/**
 * Filename: public/stylesheets/login-clearmybooks.css
 * Revision: 2025-12-18-01
 * Description: login-clearmybooks page styles
 */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  font-family: 'Inter', sans-serif;
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 420px;
}

.auth-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 40px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
}

.auth-header h1 {
  font-size: 28px;
  color: #1e293b;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #0f766e;
}

.password-input {
  position: relative;
}

.password-input input {
  padding-right: 48px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.eye-icon {
  font-size: 20px;
  opacity: 0.5;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #0f766e;
  color: white;
}

.btn-primary:hover {
  background: #0d5d57;
}

.btn-block {
  width: 100%;
}

.auth-links {
  text-align: center;
  margin-top: 24px;
  color: #64748b;
}

.auth-links a {
  color: #0f766e;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.auth-links .divider {
  margin: 0 12px;
  opacity: 0.3;
}

.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
}

.captcha-container {
  margin-bottom: 20px;
}

