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

body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(uploads/backround.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-card {
    /* 1. Mengubah background menjadi putih transparan (0.8 berarti tingkat kejelasan 80%) */
    background: rgba(255, 255, 255, 0.8 ); 
    
    /* 2. Memberikan efek blur di belakang card (efek kaca estetik) */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px); /* Dukungan untuk browser Safari */
    
    /* 3. Memberikan garis tepi tipis semi-transparan agar card tetap tegas */
    border: 1px solid rgba(255, 255, 255, 0.4);
        width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    
    /* 5. Memperkuat bayangan sedikit agar kotak login tetap kontras dengan background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo-box {
    background: #4f46e5;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.login-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 5px;
}

.login-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #94a3b8;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.btn-login {
    width: 100%;
    background: #4f46e5;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-login:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.info-login {
    margin-top: 25px;
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-login::before, .info-login::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}