* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: #111111;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .form-container {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 201, 22, 0.1);
    position: relative;
  }
  
  .form-header {
    padding: 40px 40px 20px;
    text-align: center;
  }
  
.form-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .accent-line {
    height: 4px;
    width: 60px;
    background-color: #ffc916;
    margin: 15px auto;
    border-radius: 2px;
  }
  
  .subtitle {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .form-content {
    padding: 0 40px 40px;
  }
  
  .form-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
.form-group {
    margin-bottom: 20px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
}

label i {
    color: #ffc916;
    margin-right: 8px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #111111;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

select:hover,
select:focus {
    color: #ffc916;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ffc916;
    box-shadow: 0 0 0 2px rgba(255, 201, 22, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

  .select-wrapper {
    position: relative;
  }
  
  .select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc916;
    pointer-events: none;
  }
  
  select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
  }
  

  .radio-label {
    margin-bottom: 12px;
  }
  
  .radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .radio-option input[type="radio"] {
    width: auto;
    margin-right: 8px;
    accent-color: #ffc916;
    cursor: pointer;
  }
  
  .radio-option label {
    margin-bottom: 0;
    cursor: pointer;
  }
  

  .form-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .submit-btn {
    background-color: #ffc916;
    color: #111111;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .submit-btn:hover {
    background-color: #ffd54f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  

  .form-decoration {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .decoration-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 201, 22, 0.1);
  }
  
  .decoration-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
  }
  
  .decoration-circle:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 50px;
    right: 50px;
  }
  

  @media (max-width: 768px) {
    .form-section {
      flex-direction: column;
      gap: 0;
    }
  
    .form-header,
    .form-content {
      padding-left: 25px;
      padding-right: 25px;
    }
  
    .form-header h1 {
      font-size: 24px;
    }
  
    .radio-options {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .form-header,
    .form-content {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .form-header h1 {
      font-size: 22px;
    }
  
    input,
    textarea,
    select,
    .submit-btn {
      padding: 10px 14px;
    }
  }
  

  ::placeholder {
    color: #666;
  }
  

  :focus-visible {
    outline: 2px solid #ffc916;
    outline-offset: 2px;
  }
  