@charset "UTF-8";
.intake-page {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  min-height: 100vh;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.intake-bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  z-index: -1;
}
.intake-bg-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  -webkit-animation: float 20s ease-in-out infinite;
          animation: float 20s ease-in-out infinite;
}
.intake-bg-gradient::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@-webkit-keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}
.intake-navbar {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}
.intake-navbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.intake-navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.intake-navbar__logo {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
.intake-navbar__icon {
  font-size: 1.25rem;
  color: #0ea5e9;
}
.intake-navbar__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.5px;
}
.intake-navbar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.intake-navbar__link:hover {
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.1);
  text-decoration: none;
}

.intake-container {
  padding: 3rem 0;
  min-height: calc(100vh - 70px);
}

.intake-welcome {
  text-align: center;
  margin-bottom: 2rem;
}
.intake-welcome__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intake-welcome__subtitle {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.intake-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 2rem;
}
.intake-card__header {
  background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
  padding: 2rem;
  text-align: center;
  position: relative;
}
.intake-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}
.intake-card__step {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.intake-card__title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.intake-card__body {
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.intake-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}
.intake-label__icon {
  color: #0ea5e9;
  font-size: 0.875rem;
}
.intake-label__required {
  color: #ef4444;
  margin-left: 2px;
}

.intake-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  color: #1e293b;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  min-height: 48px;
}
.intake-input::-moz-placeholder {
  color: #64748b;
}
.intake-input:-ms-input-placeholder {
  color: #64748b;
}
.intake-input::placeholder {
  color: #64748b;
}
.intake-input:hover {
  border-color: #c0cddf;
}
.intake-input:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  background: #ffffff;
}
.intake-input.parsley-error {
  border-color: #ef4444;
}
.intake-input.parsley-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.intake-input.parsley-success {
  border-color: #10b981;
}

.intake-phone-group {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.intake-phone-group .input-group-prepend .bootstrap-select .dropdown-toggle {
  border: 2px solid #e2e8f0;
  border-right: none;
  border-radius: 0.75rem 0 0 0.75rem;
  min-height: 48px;
  background: #f8fafc;
  color: #1e293b;
  font-weight: 500;
  transition: all 0.2s ease;
}
.intake-phone-group .input-group-prepend .bootstrap-select .dropdown-toggle:hover {
  border-color: #c0cddf;
  background: #edf2f7;
}
.intake-phone-group .input-group-prepend .bootstrap-select .dropdown-toggle:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: none;
}
.intake-phone-group .intake-input {
  border-radius: 0 0.75rem 0.75rem 0 !important;
  border-left: none;
  flex: 1;
}
.intake-phone-group .intake-input:focus {
  border-left: 2px solid #0ea5e9;
}
.intake-phone-group .intake-input.parsley-error, .intake-phone-group .intake-input.is-invalid {
  border-color: #ef4444;
  border-left: 2px solid #ef4444;
  border-radius: 0 0.75rem 0.75rem 0 !important;
}
.intake-phone-group .intake-input.parsley-error:focus, .intake-phone-group .intake-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.intake-phone-group .intake-input.parsley-error ~ .input-group-prepend .bootstrap-select .dropdown-toggle,
.intake-phone-group .intake-input.parsley-error ~ .input-group-prepend .bootstrap-select .dropdown-toggle, .intake-phone-group .intake-input.is-invalid ~ .input-group-prepend .bootstrap-select .dropdown-toggle,
.intake-phone-group .intake-input.is-invalid ~ .input-group-prepend .bootstrap-select .dropdown-toggle {
  border-color: #ef4444;
}
.intake-phone-group .intake-input.parsley-error ~ .input-group-prepend .bootstrap-select .dropdown-toggle, .intake-phone-group .intake-input.is-invalid ~ .input-group-prepend .bootstrap-select .dropdown-toggle {
  border-color: #ef4444;
}
.intake-phone-group:has(.intake-input.parsley-error) .input-group-prepend .bootstrap-select .dropdown-toggle, .intake-phone-group:has(.intake-input.is-invalid) .input-group-prepend .bootstrap-select .dropdown-toggle {
  border-color: #ef4444;
}
.intake-phone-group + .parsley-errors-list {
  margin-top: 0.5rem;
  width: 100%;
}

#whatsapp-error-container .parsley-errors-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
#whatsapp-error-container .parsley-errors-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #ef4444;
  margin-bottom: 0.5rem;
}
#whatsapp-error-container .parsley-errors-list li::before {
  content: "⚠";
  font-size: 0.875rem;
}

.intake-help-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}
.intake-help-text i {
  font-size: 0.75rem;
}

.intake-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intake-radio {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1rem;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
}
.intake-radio:hover {
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.05);
}
.intake-radio:has(input[type=radio]:focus) {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}
.intake-radio:has(input[type=radio]:checked) {
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.05);
}
.intake-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  pointer-events: none;
}
.intake-radio input[type=radio]:checked ~ .intake-radio__checkmark {
  background: #0ea5e9;
  border-color: #0ea5e9;
}
.intake-radio input[type=radio]:checked ~ .intake-radio__checkmark::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.intake-radio input[type=radio]:checked ~ .intake-radio__label {
  color: #1e293b;
  font-weight: 600;
}
.intake-radio__checkmark {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  margin-right: 1rem;
  transition: all 0.2s ease;
}
.intake-radio__checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease;
}
.intake-radio__label {
  flex: 1;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.5;
}

.intake-alumni-section {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 1.5rem;
}
.intake-alumni-section__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1.5rem 0;
}
.intake-alumni-section__title i {
  color: #0ea5e9;
}

.admin-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.admin-notice--regional {
  background: rgba(14, 165, 233, 0.1);
  border: 2px solid rgba(14, 165, 233, 0.3);
}
.admin-notice--central {
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.3);
}
.admin-notice--unrouted {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
}
.admin-notice__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.admin-notice__icon i {
  font-size: 1.25rem;
}
.admin-notice--regional .admin-notice__icon {
  background: rgba(14, 165, 233, 0.2);
  color: #0ea5e9;
}
.admin-notice--central .admin-notice__icon {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}
.admin-notice--unrouted .admin-notice__icon {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}
.admin-notice__content {
  flex: 1;
}
.admin-notice__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}
.admin-notice__text {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-card {
  position: relative;
  margin-bottom: 1rem;
}
.admin-card__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.admin-card__radio:checked + .admin-card__label {
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.08);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}
.admin-card__radio:checked + .admin-card__label .admin-card__name {
  color: #0ea5e9;
  font-weight: 700;
}
.admin-card__radio:checked + .admin-card__label .admin-card__badge {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  color: #047857;
}
.admin-card__radio:checked + .admin-card__label .admin-card__check-badge {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.admin-card__radio:checked + .admin-card__label .admin-card__photo-wrapper .admin-card__photo {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}
.admin-card__label {
  display: block;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.admin-card__label:hover {
  border-color: #0ea5e9;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
}
.admin-card__label:hover .admin-card__photo-wrapper {
  transform: scale(1.05);
}
.admin-card__label:hover .admin-card__badge {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.5);
  transform: scale(1.05);
}
.admin-card__label:active {
  transform: scale(0.98);
}
.admin-card__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.admin-card__photo-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-card__photo {
  position: relative;
  width: 100%;
  height: 100%;
  border: 3px solid #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
  background: #f8fafc;
  transition: all 0.3s ease;
}
.admin-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.admin-card__avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 1.75rem;
}
.admin-card__avatar i {
  opacity: 0.9;
}
.admin-card__check-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  background: #10b981;
  border: 3px solid #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(4px, -4px) scale(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.admin-card__check-badge i {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
}
.admin-card__info {
  flex: 1;
  min-width: 0;
}
.admin-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  word-wrap: break-word;
  line-height: 1.4;
}
.admin-card__meta {
  margin-top: 0.5rem;
}
.admin-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #059669;
  transition: all 0.2s ease;
}
.admin-card__badge i {
  color: #25d366;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.admin-card__badge span {
  line-height: 1;
}
.admin-card--selected .admin-card__label {
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.08);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 576px) {
  .admin-card__photo-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .admin-card__check-badge {
    width: 24px;
    height: 24px;
    top: -4px;
    right: -4px;
  }
  .admin-card__check-badge i {
    font-size: 0.65rem;
  }
  .admin-card__content {
    gap: 1rem;
  }
  .admin-card__label {
    padding: 1rem;
  }
  .admin-card__name {
    font-size: 1rem;
  }
  .admin-card__whatsapp {
    font-size: 0.875rem;
  }
  .admin-card__whatsapp span {
    font-size: 0.8125rem;
  }
}
#admin-selection-error {
  margin-top: 1rem;
  display: block;
  font-size: 0.875rem;
  color: #ef4444;
}
#admin-selection-error.d-none {
  display: none !important;
}

.intake-actions {
  margin-top: 3rem;
  text-align: center;
}
.intake-actions--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .intake-actions--split {
    flex-direction: column;
  }
  .intake-actions--split .intake-back-btn,
.intake-actions--split .intake-submit-btn {
    width: 100%;
  }
}

.intake-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
  border: none;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 56px;
  position: relative;
  overflow: hidden;
}
.intake-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.intake-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 30px -10px rgba(14, 165, 233, 0.4);
}
.intake-submit-btn:hover::before {
  left: 100%;
}
.intake-submit-btn:hover .intake-submit-btn__icon {
  transform: translateX(4px);
}
.intake-submit-btn:active {
  transform: translateY(0);
}
.intake-submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3);
}
.intake-submit-btn__text {
  position: relative;
  z-index: 1;
}
.intake-submit-btn__icon {
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}
.intake-submit-btn.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}
.intake-submit-btn.btn-loading .intake-submit-btn__text::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: spin 0.6s linear infinite;
          animation: spin 0.6s linear infinite;
}
.intake-submit-btn.btn-loading .intake-submit-btn__icon {
  display: none;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.intake-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 56px;
}
.intake-back-btn:hover {
  color: #0ea5e9;
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.05);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.intake-back-btn:hover .intake-back-btn__icon {
  transform: translateX(-4px);
}
.intake-back-btn:active {
  transform: translateY(0);
}
.intake-back-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}
.intake-back-btn__icon {
  transition: transform 0.2s ease;
}
.intake-footer-info {
  text-align: center;
  margin-top: 1.5rem;
}
.intake-footer-info p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 9999px;
}
.intake-footer-info p i {
  color: #10b981;
}

.parsley-errors-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.parsley-errors-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #ef4444;
  margin-bottom: 0.5rem;
}
.parsley-errors-list li::before {
  content: "⚠";
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .intake-navbar__title {
    font-size: 1rem;
  }
  .intake-navbar__link span {
    display: none;
  }

  .intake-container {
    padding: 1.5rem 0;
  }

  .intake-welcome {
    margin-bottom: 1.5rem;
  }
  .intake-welcome__title {
    font-size: 1.5rem;
  }
  .intake-welcome__subtitle {
    font-size: 1rem;
  }

  .intake-card {
    border-radius: 0.75rem;
  }
  .intake-card__header {
    padding: 1.5rem;
  }
  .intake-card__title {
    font-size: 1.25rem;
  }
  .intake-card__body {
    padding: 1.5rem;
  }

  .intake-alumni-section {
    padding: 1.5rem;
  }
  .intake-alumni-section__title {
    font-size: 1.125rem;
  }

  .intake-submit-btn {
    width: 100%;
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .intake-card__body {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .intake-welcome__title {
    font-size: 3rem;
  }
}
.success-admin-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 2px solid #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.success-admin-card__photo-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
  flex-shrink: 0;
}
.success-admin-card__photo {
  width: 100%;
  height: 100%;
  border: 3px solid #0ea5e9;
  border-radius: 9999px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}
.success-admin-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.success-admin-card__check-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  background: #10b981;
  border: 3px solid #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.success-admin-card__check-badge i {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
}
.success-admin-card__info {
  flex: 1;
  min-width: 0;
}
.success-admin-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.success-admin-card__meta {
  margin-top: 0.5rem;
}
.success-admin-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid #25d366;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #047857;
}
.success-admin-card__badge i {
  color: #25d366;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.success-admin-card__badge span {
  line-height: 1;
  font-weight: 600;
}

.intake-submit-btn__icon-left {
  margin-right: 0.75rem;
}

.intake-page .bootstrap-select .dropdown-toggle {
  background: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 0.75rem !important;
  color: #1e293b !important;
  font-size: 1rem !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif !important;
  padding: 0.75rem 1rem !important;
  min-height: 3.25rem !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
}
.intake-page .bootstrap-select .dropdown-toggle:hover {
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
}
.intake-page .bootstrap-select .dropdown-toggle:focus, .intake-page .bootstrap-select .dropdown-toggle:active, .intake-page .bootstrap-select .dropdown-toggle.show {
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15) !important;
  outline: none !important;
}
.intake-page .bootstrap-select .dropdown-toggle::after {
  color: #64748b !important;
  transition: transform 0.2s ease !important;
}
.intake-page .bootstrap-select .dropdown-toggle.show::after {
  transform: rotate(180deg) !important;
}
.intake-page .bootstrap-select .bs-searchbox {
  padding: 0.75rem 1rem !important;
  background: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
}
.intake-page .bootstrap-select .bs-searchbox .form-control {
  border: 2px solid #e2e8f0 !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.875rem !important;
  color: #1e293b !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif !important;
}
.intake-page .bootstrap-select .bs-searchbox .form-control:focus {
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
  outline: none !important;
}
.intake-page .bootstrap-select .bs-searchbox .form-control::-moz-placeholder {
  color: #64748b !important;
}
.intake-page .bootstrap-select .bs-searchbox .form-control:-ms-input-placeholder {
  color: #64748b !important;
}
.intake-page .bootstrap-select .bs-searchbox .form-control::placeholder {
  color: #64748b !important;
}
.intake-page .bootstrap-select .dropdown-menu {
  border: 2px solid #e2e8f0 !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  padding: 0 !important;
  margin-top: 0.5rem !important;
  max-height: 300px !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif !important;
}
.intake-page .bootstrap-select .dropdown-menu .inner {
  max-height: 250px !important;
  padding: 0.5rem 0 !important;
}
.intake-page .bootstrap-select .dropdown-menu li a {
  padding: 0.625rem 1rem !important;
  color: #1e293b !important;
  font-size: 1rem !important;
  transition: all 0.15s ease !important;
}
.intake-page .bootstrap-select .dropdown-menu li a:hover {
  background: rgba(14, 165, 233, 0.08) !important;
  color: #0284c7 !important;
}
.intake-page .bootstrap-select .dropdown-menu li a.active, .intake-page .bootstrap-select .dropdown-menu li a.selected {
  background: #0ea5e9 !important;
  color: #ffffff !important;
}
.intake-page .bootstrap-select .dropdown-menu li a.active:hover, .intake-page .bootstrap-select .dropdown-menu li a.selected:hover {
  background: #0284c7 !important;
}
.intake-page .bootstrap-select .dropdown-menu .no-results {
  padding: 1rem !important;
  color: #64748b !important;
  font-size: 0.875rem !important;
  text-align: center !important;
  background: #f8fafc !important;
}
.intake-page .bootstrap-select.disabled .dropdown-toggle {
  background: #f8fafc !important;
  color: #64748b !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
.intake-page .intake-country-code .dropdown-toggle {
  padding: 0.75rem 1rem !important;
  min-width: 180px !important;
  max-width: 280px !important;
  text-align: left !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  background: #f8fafc !important;
}
.intake-page .intake-country-code .dropdown-toggle::after {
  margin-left: 0.75rem !important;
}
.intake-page .intake-country-code .dropdown-menu {
  min-width: 280px !important;
  max-width: 380px !important;
  max-height: 320px !important;
}
.intake-page .intake-country-code .dropdown-menu .inner {
  max-height: 270px !important;
}
.intake-page .intake-country-code .dropdown-menu li a {
  white-space: normal !important;
  word-wrap: break-word !important;
  padding: 0.625rem 1rem !important;
  line-height: 1.5 !important;
}
.intake-page .intake-country-code .dropdown-menu li a::after {
  content: attr(data-tokens);
  font-weight: 600;
  margin-left: auto;
}
.intake-page .intake-country-code .bs-searchbox .form-control::-moz-placeholder {
  content: "Search country or code..." !important;
}
.intake-page .intake-country-code .bs-searchbox .form-control:-ms-input-placeholder {
  content: "Search country or code..." !important;
}
.intake-page .intake-country-code .bs-searchbox .form-control::placeholder {
  content: "Search country or code..." !important;
}

@media print {
  .intake-bg-gradient,
.intake-navbar,
.intake-submit-btn,
.intake-footer-info {
    display: none;
  }

  .intake-card {
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}
