/* Auth Pages Specific Styles */

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 2rem;
}

.auth-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 450px;
  width: 100%;
}

.auth-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.auth-subtitle {
  color: #6c757d;
  text-align: center;
  margin-bottom: 2rem;
}

.auth-form {
  margin-bottom: 1.5rem;
}

.btn-block {
  width: 100%;
  margin-top: 1rem;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: var(--border-color);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

.auth-divider span {
  background: white;
  padding: 0 10px;
  color: #6c757d;
  font-size: 0.875rem;
}

.btn-google {
  width: 100%;
  background: white;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-google:hover {
  background: var(--light-bg);
  border-color: var(--text-dark);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: #6c757d;
}

.auth-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .auth-card {
    padding: 1.5rem;
  }

  .auth-title {
    font-size: 1.5rem;
  }
}
