/* ============================================
   AUTHENTICATION PAGES
   Login, Signup, and related auth flows
   ============================================ */

.auth-main {
  min-height: 100vh;
  background: #12192e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.auth-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  width: 100%;
  max-width: 470px;
  backdrop-filter: blur(10px);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.auth-logo .logo-icon {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.auth-header h1 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.auth-header p {
  color: #666;
  font-size: 1rem;
}

.auth-form {
  margin-bottom: 2rem;
}

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

.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}

.auth-divider span {
  padding: 0 1rem;
  color: #999;
  font-size: 0.875rem;
  background: white;
}

.auth-footer {
  text-align: center;
  color: #666;

  p{
    font-size: 0.8rem;
    margin-top: 10px;
  }
}

.auth-link {
  color: #1250FB;
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-card .btn {
  width: 100%;
  justify-content: center;
}

.btn-full {
  width: 100%;
}

.btn-google {
  background: white;
  color: #333;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 500;
}

.btn-google:hover {
  background: #f8f9fa;
  border-color: #ddd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-icon {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-card {
    padding: 2rem;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .auth-card {
    padding: 1.5rem;
    margin: 0.5rem;
  }
}
