/* ============================================================
   Auth Pages Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.auth-header {
    text-align: center;
    padding: 40px 30px 20px;
}

.auth-logo {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #fff;
}

.auth-header h3 {
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 4px;
}

.auth-body {
    padding: 20px 30px 30px;
}

.auth-body .form-floating > .form-control {
    border-radius: 10px;
    border: 1px solid #e9ecef;
    height: 52px;
}

.auth-body .form-floating > .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

.auth-body .form-floating > label {
    padding: 14px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    font-size: 16px;
    z-index: 5;
}

.form-floating {
    position: relative;
}

.auth-btn {
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    background: var(--primary-gradient);
    border: none;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}

.auth-footer {
    text-align: center;
    padding: 20px 30px;
    background: #f8f9fa;
    font-size: 12px;
    color: #6c757d;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 480px) {
    body { padding: 10px; }
    .auth-header { padding: 30px 20px 16px; }
    .auth-body { padding: 16px 20px 24px; }
    .auth-footer { padding: 16px 20px; }
}
