/* ===========================
   LOGIN ADMIN DESA SIDOKARE
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(180deg,#b7e5ff 0%,#edf8ff 100%);

    overflow:hidden;

    position:relative;

}

/* Lingkaran besar bawah */

.background-circle{

    position:absolute;

    width:1400px;

    height:1400px;

    border:2px solid rgba(255,255,255,.45);

    border-radius:50%;

    bottom:-1080px;

    left:50%;

    transform:translateX(-50%);

}

/* Card */

.login-card{

    width:430px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-radius:28px;

    padding:45px;

    text-align:center;

    box-shadow:

    0 20px 50px rgba(0,0,0,.08);

    position:relative;

    z-index:2;

}

/* Icon */

.icon-box{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:

    0 10px 30px rgba(0,0,0,.08);

}

/* Judul */

.login-card h1{

    font-size:31px;

    color:#1f2937;

    font-weight:700;

    margin-bottom:10px;

}

.login-card p{

    color:#6b7280;

    line-height:1.7;

    margin-bottom:35px;

}

/* Error */

.error{

    background:#ffe4e6;

    color:#b91c1c;

    padding:14px;

    border-radius:14px;

    margin-bottom:20px;

    font-size:14px;

}

/* Input */

.login-card input{

    width:100%;

    height:58px;

    border:none;

    outline:none;

    background:#f6f8fb;

    border-radius:15px;

    padding:0 20px;

    font-size:15px;

    margin-bottom:18px;

    transition:.3s;

}

.login-card input:focus{

    background:white;

    box-shadow:

    0 0 0 4px rgba(46,125,50,.15);

}

/* Tombol */

.login-card button{

    width:100%;

    height:58px;

    border:none;

    border-radius:15px;

    background:#2E7D32;

    color:white;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.login-card button:hover{

    background:#256b2a;

    transform:translateY(-2px);

}

/* Responsive */

@media(max-width:500px){

.login-card{

width:92%;

padding:35px 25px;

}

.login-card h1{

font-size:26px;

}

}