/* ===============================
   VUKAGO LOGIN PAGE
================================== */

.vukago-login-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:80vh;
    padding:60px 20px;
}

.vukago-login-card{
    width:100%;
    max-width:460px;
    background:#ffffff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.vukago-login-card h2{
    margin:0;
    text-align:center;
    font-size:32px;
    color:#2C6E6E;
}

.vukago-login-card p{
    text-align:center;
    margin:10px 0 30px;
    color:#666;
    font-size:15px;
}

/* Fields */

.vukago-field{
    margin-bottom:18px;
}

.vukago-field label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:#222;
}

.vukago-field input{
    width:100%;
    height:50px;
    padding:0 15px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
    font-size:15px;
}

.vukago-field input:focus{
    border-color:#2C6E6E;
    box-shadow:0 0 0 3px rgba(44,110,110,.15);
}

/* Remember */

.vukago-remember{
    display:flex;
    align-items:center;
    gap:8px;
    margin:15px 0 25px;
    font-size:14px;
}

.vukago-remember input{
    width:18px;
    height:18px;
    margin:0;
}

/* Button */

.vukago-login-btn{
    width:100%;
    background:#2C6E6E;
    color:#fff;
    border:none;
    border-radius:10px;
    height:52px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.vukago-login-btn:hover{
    background:#245959;
}

/* Message */

#vukago-login-message{
    margin-top:15px;
    text-align:center;
    font-weight:600;
}

/* Links */

.vukago-links{
    text-align:center;
    margin-top:25px;
}

.vukago-links a{
    color:#2C6E6E;
    text-decoration:none;
    font-weight:600;
}

.vukago-links a:hover{
    text-decoration:underline;
}

/* Responsive */

@media(max-width:768px){

    .vukago-login-card{

        padding:30px 25px;

    }

}