/* Shared styles for authentication pages (login, forgot-password, reset-password) */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-container {
  background: #2d3748;
  border: 2px solid #4a5568;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo h1 {
  font-size: 32px;
  color: #4ec9b0;
  font-weight: 700;
  margin-bottom: 8px;
}

.logo p {
  color: #a0a0a0;
  font-size: 14px;
}

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

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

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: #1a202c;
  border: 2px solid #4a5568;
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #4ec9b0;
}

.form-group input::placeholder {
  color: #718096;
}

.password-requirements {
  font-size: 12px;
  color: #858585;
  margin-top: 5px;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: #4ec9b0;
  color: #1a1a2e;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.btn-primary:hover {
  background: #45b8a3;
}

.btn-primary:disabled {
  background: #4a5568;
  cursor: not-allowed;
}

.btn-secondary {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #4ec9b0;
  border: 2px solid #4ec9b0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(78, 201, 176, 0.1);
}

.divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  color: #718096;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #4a5568;
}

.divider span {
  padding: 0 15px;
  font-size: 14px;
}

.btn-google {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #333;
  border: 2px solid #4a5568;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
}

.btn-google:hover {
  background: #f0f0f0;
}

.btn-google svg {
  width: 20px;
  height: 20px;
}

.reset-link {
  background: rgba(60, 60, 60, 0.5);
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
  word-break: break-all;
  font-size: 12px;
  font-family: monospace;
}

.reset-link a {
  color: #4ec9b0;
  text-decoration: none;
}

.forgot-password-link {
  text-align: right;
  margin-bottom: 10px;
}

.forgot-password-link a {
  color: #4ec9b0;
  text-decoration: none;
  font-size: 14px;
}
