/* ==========================================
   LOGIN PAGE
   SIP3 NEW POSYANDU
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    background:linear-gradient(135deg,#2E7D32,#66BB6A);

    min-height:100vh;

}

.card{

    border-radius:20px;

    overflow:hidden;

}

.card-body{

    padding:35px;

}

h3{

    color:#2E7D32;

    font-weight:700;

}

.text-muted{

    font-size:14px;

}

.form-label{

    font-weight:600;

}

.form-control{

    height:48px;

}

.input-group-text{

    background:white;

}

.form-control:focus{

    box-shadow:none;

    border-color:#2E7D32;

}

.btn-success{

    background:#2E7D32;

    border:none;

    height:48px;

    font-weight:bold;

}

.btn-success:hover{

    background:#1B5E20;

}

.btn-outline-secondary{

    border-color:#ced4da;

}

.alert{

    border-radius:10px;

}

img{

    max-width:90px;

}

small{

    color:#888;

}

@media(max-width:768px){

.card{

margin:15px;

}

.card-body{

padding:25px;

}

}