/* CSS KHUSUS HALAMAN LOGIN ADMIN */

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

:root {
    --primary-green: #059669;
    --hero-green: #10b981;
    --charcoal: #1e293b;
    --slate: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    /* Gaya B: Background Foto Gedung/Suasana di-blur gelap */
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

/* Glassmorphism Card */
.login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login-logo {
    width: 80px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.login-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 32px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.form-label {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #64748b;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--hero-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Eye Icon untuk Password */
.toggle-password {
    position: absolute;
    right: 16px;
    top: 38px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
}
.toggle-password:hover {
    color: #ffffff;
}

/* Button */
.btn-login {
    width: 100%;
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--primary-green) 100%);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.back-link {
    display: inline-block;
    margin-top: 24px;
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: #ffffff;
}