*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#F5F7FB;

}

.login-wrapper{

    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;

}

.login-card{

    width:430px;
    background:#fff;
    padding:45px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.login-logo{

    width:70px;
    margin-bottom:15px;

}

.login-title{

    font-size:38px;
    font-weight:700;
    color:#222;

}

.login-subtitle{

    color:#777;
    margin-top:5px;
    margin-bottom:30px;

}

.form-label{

    font-weight:600;
    margin-bottom:8px;

}

.form-control{

    height:52px;
    border-radius:10px;
    border:1px solid #d9d9d9;

}

.form-control:focus{

    border-color:#4F46E5;
    box-shadow:none;

}

.password-wrapper{

    position:relative;

}

.password-toggle{

    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    color:#777;

}

.btn-login{

    width:100%;
    height:52px;
    background:#4F46E5;
    color:#fff;
    font-size:18px;
    font-weight:600;
    border-radius:10px;
    border:none;

}

.btn-login:hover{

    background:#4338CA;
    color:#fff;

}

.login-footer{

    text-align:center;
    margin-top:35px;
    color:#777;
    line-height:1.8;

}