/* Authentication Pages - Login, Register, Recovery */
.page-wrapper { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%); position: relative; }
.page-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(114,47,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'); opacity: 0.3; }
.auth-container { max-width: 500px; width: 100%; position: relative; z-index: 1; }
.auth-box { background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%); border: 2px solid var(--primary); border-radius: 16px; padding: 3rem 2.5rem; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 100px rgba(114, 47, 55, 0.2); backdrop-filter: blur(10px); }
.auth-box h1 { font-family: var(--font-display); font-size: 2rem; color: var(--text); text-align: center; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.auth-box h1 i { color: var(--primary); font-size: 2.2rem; }
.auth-subtitle { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; font-family: var(--font-body); }
.auth-error { background: rgba(220, 53, 69, 0.15); border: 2px solid #dc3545; border-radius: 8px; padding: 1rem; margin-bottom: 1.5rem; color: #dc3545; display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.auth-success { background: rgba(40, 167, 69, 0.15); border: 2px solid #28a745; border-radius: 8px; padding: 1rem; margin-bottom: 1.5rem; color: #28a745; display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.auth-form .form-group { margin-bottom: 1.5rem; }
.auth-form label { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); margin-bottom: 0.5rem; font-weight: 500; font-family: var(--font-ui); font-size: 0.95rem; }
.auth-form label i { color: var(--primary); width: 18px; }
.auth-form input[type="text"], .auth-form input[type="email"], .auth-form input[type="password"] { width: 100%; padding: 1rem 1.25rem; background: rgba(45, 45, 45, 0.8); border: 2px solid rgba(114, 47, 55, 0.3); border-radius: 10px; color: var(--text); font-size: 1rem; font-family: var(--font-body); transition: all 0.3s ease; }
.auth-form input:focus { outline: none; border-color: var(--primary); background: rgba(45, 45, 45, 0.95); box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.15), 0 8px 20px rgba(114, 47, 55, 0.2); transform: translateY(-2px); }
.checkbox-group { margin: 1.5rem 0; }
.checkbox-label { display: flex; align-items: center; gap: 0.75rem; color: var(--text-secondary); cursor: pointer; font-size: 0.95rem; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: var(--primary); }
.btn-auth { width: 100%; padding: 1.125rem 2rem; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: var(--text); border: none; border-radius: 10px; font-family: var(--font-ui); font-weight: 600; font-size: 1.05rem; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(114, 47, 55, 0.4); display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.btn-auth:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(114, 47, 55, 0.6); background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); }
.btn-auth:active { transform: translateY(-1px); }
.btn-auth i { font-size: 1.1rem; }
.auth-links { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(114, 47, 55, 0.3); display: flex; flex-direction: column; gap: 1rem; text-align: center; }
.auth-links a { color: var(--primary); text-decoration: none; font-family: var(--font-ui); font-size: 0.95rem; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.auth-links a:hover { color: var(--secondary); transform: translateX(3px); }
.auth-links a::after { content: '→'; opacity: 0; transition: opacity 0.3s ease; }
.auth-links a:hover::after { opacity: 1; }
@media (max-width: 768px) { .page-wrapper { padding: 2rem 1rem; } .auth-box { padding: 2rem 1.5rem; } .auth-box h1 { font-size: 1.75rem; } .auth-box h1 i { font-size: 1.9rem; } }
@media (max-width: 480px) { .auth-box { padding: 1.75rem 1.25rem; } .auth-box h1 { font-size: 1.5rem; } .auth-subtitle { font-size: 0.9rem; } }
