/* 🔹 Pastikan body full-screen dengan background pattern lebih artistik */
body, html {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(0, 138, 236, 0.8) 0%, rgba(0, 86, 179, 0.9) 100%) !important;
    background-size: cover !important;
    background-blend-mode: overlay !important;

/* 🔹 Login card dengan background putih sedikit transparan dan lebih lebar */
.login-card {
    width: 95vw;
    max-width: 500px;
    padding: 50px 40px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.6s ease-in-out;
    backdrop-filter: blur(10px);
    min-height: 85vh;
    overflow: hidden;
    position: relative;
    /* Motif pola titik-titik */
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 10px 10px;
}

/* 🔹 Header dengan gradient warna modern */
.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #1168cb, #3235c5);
    clip-path: ellipse(100% 60% at 50% 40%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* 🔹 Footer curve dengan gradient modern */
.login-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #1168cb, #5585c4);
    clip-path: ellipse(100% 50% at 50% 100%);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.login-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 20px; /* Posisi lebih ke atas lagi */
    position: relative;
    z-index: 2;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(90deg, #3a0ca3, #7209b7, #560bad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/* 🔹 Form inputan lebih proporsional */
.list {
    width: 100%;
    max-width: 420px;
    margin-top: 20px;
}

.item-input-outline .item-input-wrap {
    border: 1px solid #007bff !important;
    border-radius: 2px;
    padding: 10px 15px;
    width: 80%;
    max-width: 100%;
    margin: 5px auto;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(5px);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.item-input-outline .item-title {
    font-weight: bold;
    color: #0056b3;
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 10px;
}

/* 🔹 Tombol Login lebih proporsional */
.login-button {
    width: 100%;
    max-width: 420px;
    height: 50px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    margin-top: 20px;
}

/* 🔹 Efek hover lembut */
.login-button:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

/* 🔹 Fokus input lebih interaktif */
.item-input-outline .item-input-wrap input:focus {
    border-color: #0056b3 !important;
    outline: none;    
    transform: scale(1.02);
}