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

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

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

.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: #2563eb;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.back-home {
  display: block;
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
}

.back-home:hover {
  color: #2563eb;
}

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

.subtitle {
  color: #64748b;
  margin: 0;
}

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

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

.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="password"],
.form-group input[type="text"] {
  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: #2563eb;
}

.form-hint {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

.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;
}

.password-requirements {
  margin-top: 12px;
  font-size: 13px;
}

.password-requirements .req {
  color: #64748b;
  margin: 4px 0;
}

.password-requirements .req.valid {
  color: #16a34a;
}

.checkbox-group {
  margin-top: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: normal !important;
}

.checkbox-label input {
  margin-top: 3px;
}

.checkbox-label a {
  color: #2563eb;
}

.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;
  margin-top: 8px;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-block {
  width: 100%;
}

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

.auth-links a {
  color: #2563eb;
  text-decoration: none;
}

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

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

