/* Signup page — light theme, responsive form */

.ga-auth-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 0 28px;
}

.ga-auth-card {
  width: 100%;
  
  margin: 0 auto;
  border-radius: var(--ga-radius);
  border: 1px solid var(--ga-border);
  background: var(--ga-bg-2);
  box-shadow: var(--ga-shadow);
  overflow: hidden;
}

.ga-auth-card-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--ga-border);
  background: var(--ga-surface-muted);
}
.ga-auth-card-header h3 {
  margin: 0;
  color: var(--ga-text);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}
.ga-auth-card-header p {
  margin: 6px 0 0;
  color: var(--ga-muted);
  font-size: 14px;
}

.ga-auth-card-body {
  padding: 18px 20px 24px;
}

.ga-auth-card .Form_First_Container {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
}

.ga-auth-card .Form_First_Container > [class*="col-"] {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.ga-auth-card .input-group {
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100%;
}

.ga-auth-card .form-label {
  color: var(--ga-text-soft);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  width: 100%;
}

.ga-auth-card input:not([type="checkbox"]):not([type="radio"]),
.ga-auth-card select,
.ga-auth-card textarea {
  width: 100% !important;
  max-width: 100%;
  background: var(--ga-bg-2) !important;
  border: 1px solid var(--ga-border) !important;
  color: var(--ga-text) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  min-height: 48px;
  box-sizing: border-box;
}

.ga-auth-card input::placeholder {
  color: #94a3b8;
}

.ga-auth-card .phone-input-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
.ga-auth-card .phone-input-row .phone-country-code,
.ga-auth-card .phone-input-row .select2-container {
  flex: 0 0 96px;
  width: 96px !important;
  min-width: 96px;
}
.ga-auth-card .phone-input-row .phone-number {
  flex: 1;
  min-width: 0;
}

.ga-auth-card .d-flex.gap-3.flex-wrap {
  gap: 12px !important;
}

.ga-auth-card .RecruitStudents,
.ga-auth-card .BusinessType {
  color: var(--ga-text-soft);
  font-size: 14px;
}

.ga-auth-card .Secound_Sign_Up_Heading {
  border-top: 1px solid var(--ga-border);
  padding-top: 18px;
  margin-top: 8px;
  width: 100%;
}
.ga-auth-card .Secound_Sign_Up_Heading p {
  color: var(--ga-text);
  font-weight: 800;
  font-size: 1.1rem;
}

.ga-auth-card .Form_Submit_Button,
.ga-auth-card .Primary_Button {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  margin-top: 1rem !important;
  padding: 14px 20px !important;
  border-radius: 12px !important;
}

.ga-auth-card small,
.ga-auth-card .text-muted {
  color: var(--ga-muted) !important;
}
.ga-auth-card .invalid-feedback {
  color: #dc2626;
}
.ga-auth-card .agreeTerms,
.ga-auth-card .termsPrivacy {
  color: var(--ga-text-soft);
}

.ga-help {
  margin-top: 20px;
  border-radius: var(--ga-radius);
  border: 1px solid var(--ga-border);
  background: var(--ga-surface-muted);
  padding: 18px 20px;
}
.ga-help h4 {
  color: var(--ga-text);
  font-weight: 900;
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.ga-help ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ga-muted);
  font-size: 14px;
}
.ga-help li {
  margin: 8px 0;
  line-height: 1.55;
}

.ga-auth-card .select2-container {
  width: 100% !important;
  max-width: 100%;
}
.ga-auth-card .select2-container--default .select2-selection--single {
  min-height: 48px !important;
  border-radius: 12px !important;
  background: var(--ga-bg-2) !important;
  border: 1px solid var(--ga-border) !important;
}
.ga-auth-card .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px !important;
  color: var(--ga-text) !important;
}

@media (max-width: 767.98px) {
  .ga-auth-wrap { padding: 4px 0 20px; }
  .ga-auth-card-body { padding: 14px 14px 20px; }
  .ga-auth-card .Form_First_Container > [class*="col-md-6"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ga-auth-card .phone-input-row {
    flex-direction: column;
  }
  .ga-auth-card .phone-input-row .phone-country-code,
  .ga-auth-card .phone-input-row .select2-container {
    flex: 1 1 100%;
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .ga-auth-card-body { padding: 22px 28px 28px; }
}
