/* public/assets/css/auth.css — gaya halaman autentikasi (login/register/forgot/reset) */
:root {
    --auth-primary: #2c3e50;
    --auth-secondary: #3498db;
    --auth-accent: #e74c3c;
}

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

.login-container {
    max-width: 450px;
    width: 100%;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header {
    background: var(--auth-primary);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.login-header h3 {
    margin: 10px 0 0 0;
    font-weight: 300;
}

.login-header .logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.login-body {
    padding: 30px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    border-color: var(--auth-secondary);
}

.btn-login {
    background: var(--auth-primary);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
    background: var(--auth-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.35);
}
