/* Page-specific styles for forgot password page */
.forgot-title {
  text-align: center;
  color: #1e3a8a;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}

.forgot-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 26px;
}

.btn-primary,
.btn-secondary {
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.1s ease, opacity 0.2s ease;
}

.btn-primary {
  margin-bottom: 12px;
  background: #1f2a9c;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2635b7;
}

.btn-secondary {
  background: #1f2a9c;
  color: #08b27b;
}

.btn-secondary:hover {
  background: #2635b7;
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.99);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .page-image {
    display: none;
  }

  .page-panel {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-content {
    max-width: none;
    width: 100%;
    padding: 36px 24px 0;
  }

  .logo-container img {
    max-width: 210px;
  }

  .forgot-title {
    font-size: 26px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 18px;
  }
}
