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

*, *::before, *::after { box-sizing: border-box; }

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

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

.auth-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 106, 79, 0.12);
    padding: 40px 36px;
}

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

.auth-logo-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(45,106,79,0.3);
}

.auth-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0 0 4px;
}

.auth-logo p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.form-control, .input-group-text {
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    font-size: 14px;
    padding: 10px 14px;
}

.form-control:focus {
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.input-group .form-control { border-radius: 0 10px 10px 0; }
.input-group .input-group-text { border-radius: 10px 0 0 10px; background: #f9f9f9; color: #666; border-right: none; }
.input-group .btn { border-radius: 0 10px 10px 0; border: 1.5px solid #e0e0e0; border-left: none; }

.btn-login {
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px;
    color: #fff;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(45,106,79,0.25);
}

.btn-login:hover {
    background: linear-gradient(135deg, #1b5e35, #2d6a4f);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(45,106,79,0.3);
    color: #fff;
}

@media (max-width: 480px) {
    .auth-card { padding: 28px 20px; border-radius: 16px; }
}
