

/***************************/
.home-brife{
    font-family: "Cairo", sans-serif;
    color: white;
    direction: ltr;
    
}

body {
    font-family: "Cairo", sans-serif;
    background: linear-gradient(to right, #000, #001f1f);
    color: white;
    direction: ltr;
  }

  body {
    margin: 0;
    padding: 0;
    background-color: #000f0e;
    font-family: 'Cairo', sans-serif;
    color: white;
  }
  .brief-container {
    background-color: #041312;
    border-radius: 16px;
    padding: 30px 25px;
    max-width: 700px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
  }
  .brief-title {
    text-align: center;
    color: white;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: bold;
  }
  .brief-section-title {
    color: #00ff88;
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .brief-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  .brief-form input,
  .brief-form select,
  .brief-form textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #0d1f1c;
    color: white;
    font-size: 14px;
    outline: none;
    width: 100%;
  }
  .brief-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
  }
  .brief-button {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
  }
  .brief-button button {
    background-color: #00ff88;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .brief-button button:hover {
    background-color: #00cc70;
  }
  .logo-type-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 10px;
  }
  .logo-type-grid label {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0d1f1c;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 120px;
    transition: 0.3s;
  }
  .logo-type-grid label:hover {
    background-color: #00ff8855;
  }
  .logo-type-grid img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 4px;
  }
  .step {
    display: none;
  }
  .step.active {
    display: block;
  }
  .warning-box {
    background-color: #ff0040;
    color: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
  }
  