/* Layout Login Glass */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Background dihandle global.css */
}

.login-container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    max-width: 420px;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Shadow dalem */
}

/* Header */
.login-header { text-align: center; margin-bottom: 40px; }

.login-header h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-header p { color: var(--text-muted); font-size: 15px; }

/* Form Elements */
.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-main);
}

.form-group input {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    outline: none;
    color: white;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.forgot-password {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.forgot-password:hover { color: var(--accent); }

/* Button Login */
.btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), #4f46e5);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.login-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-muted);
}
.login-footer a { color: var(--accent); font-weight: 600; }

/* --- RESPONSIVE LOGIN --- */
@media screen and (max-width: 480px) {
    .login-container { padding: 16px; }
    
    .login-card {
        padding: 32px 24px; /* Padding dalam lebih kecil */
        margin-top: -40px; /* Biar agak ke atas dikit */
    }

    .login-header h1 { font-size: 26px; }
}