* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #d4f0fb 0%, #e8f7f5 50%, #d0f5ef 100%);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #4eb5f1 0%, #3a9fd8 40%, #26BFAA 70%, #1fa593 100%);
  z-index: 1000;
}
@media (max-width: 991px) {
  body::before {
    display: none;
  }
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.page-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-panel {
  flex: 1;
  padding: 3rem;
  min-width: 0;
}

.image-panel {
  width: 45%;
  background: linear-gradient(135deg, rgba(78, 181, 241, 0.92) 0%, rgba(58, 159, 216, 0.92) 100%), var(--panel-image) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.image-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--panel-image) center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}
.image-panel .logo-bottom {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 1;
}
.image-panel .logo-bottom svg {
  width: 160px;
  fill: #fff;
}
.image-panel h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.image-panel p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 320px;
}

.image-panel-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.typewriter-container {
  height: 120px;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.typewriter-container h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  min-height: 2.5rem;
  white-space: nowrap;
  overflow: hidden;
}
.typewriter-container p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  min-height: 3.2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.typewriter-container p.visible {
  opacity: 1;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  width: 280px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}
.feature-item i {
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  color: #fff;
}

.didyouknow-container {
  margin-bottom: 1.5rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.didyouknow-container .didyouknow-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}
.didyouknow-container .didyouknow-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  min-height: 3.5rem;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  max-width: 280px;
}
.didyouknow-container .didyouknow-text.fade-out {
  opacity: 0;
}
.didyouknow-container .didyouknow-progress-wrapper {
  margin-top: 1rem;
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}
.didyouknow-container .didyouknow-progress {
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 2px;
  animation: progress 4s linear;
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.logo-mobile {
  display: none;
  margin-bottom: 2rem;
  text-align: center;
}
.logo-mobile svg {
  width: 140px;
  fill: #4eb5f1;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.form-control {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: #333;
}
.form-control:focus {
  border-color: #4eb5f1;
  box-shadow: 0 0 0 3px rgba(78, 181, 241, 0.1);
  outline: none;
  background: #fff;
}

.form-row {
  display: flex;
  gap: 1rem;
}
.form-row > div {
  flex: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #4eb5f1 0%, #3a9fd8 100%);
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  transition: background 0.2s, opacity 0.2s;
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3a9fd8 0%, #2d8bc4 100%);
  opacity: 0.95;
}

.btn-secondary-outline,
.btn-outline-primary {
  background: transparent;
  border: 2px solid #4eb5f1;
  color: #4eb5f1;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary-outline:hover,
.btn-outline-primary:hover {
  background: #4eb5f1;
  color: #fff;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.trust-badge {
  display: flex;
  align-items: center;
  color: #888;
  font-size: 0.85rem;
}
.trust-badge svg {
  margin-right: 0.2rem;
}
.trust-badge i {
  margin-right: 0.6rem;
  color: #28a745;
}

.advisor-section {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 12px;
}
.advisor-section img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.advisor-quote {
  font-style: italic;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.page-link {
  text-align: center;
  margin-top: 1.25rem;
  color: #666;
  font-size: 0.9rem;
}
.page-link a {
  color: #4eb5f1;
  font-weight: 600;
  text-decoration: none;
}
.page-link a:hover {
  text-decoration: underline;
}

.thank-you-content {
  text-align: center;
  padding: 2rem 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: #d4edda;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.thank-you-icon i {
  font-size: 2.5rem;
  color: #28a745;
}

.forgot-password-link {
  color: #4eb5f1;
  font-size: 0.9rem;
  text-decoration: none;
}
.forgot-password-link:hover {
  text-decoration: underline;
}

.two-factor-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4eb5f1 0%, #3a9fd8 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.two-factor-icon i {
  font-size: 2rem;
  color: #fff;
}

.two-factor-input {
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  text-align: center;
}

.custom-checkbox-wrapper {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.custom-checkbox-wrapper input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  accent-color: #4eb5f1;
}
.custom-checkbox-wrapper label {
  margin: 0;
  font-weight: 400;
  color: #666;
}

.modal-content {
  border-radius: 12px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #eee;
  padding: 1.25rem 1.5rem;
}

.modal-title {
  color: #333;
  font-weight: 600;
}

.modal-body {
  padding: 1.5rem;
  color: #555;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 1rem 1.5rem;
}
.modal-footer .btn-secondary {
  background: #6c757d;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4eb5f1 0%, #3a9fd8 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.success-icon i {
  font-size: 2.5rem;
  color: #fff;
}

@media (max-width: 991px) {
  .page-wrapper {
    padding: 1rem;
  }
  .page-container {
    flex-direction: column;
  }
  .image-panel {
    display: none;
  }
  .form-panel {
    padding: 2rem;
  }
  .logo-mobile {
    display: block;
  }
}
@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  h1 {
    font-size: 1.5rem;
  }
  .trust-badges {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

/*# sourceMappingURL=auth.css.map */
