*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#eef2f7;

    display:flex;

    justify-content:center;

    align-items:center;

    height:100vh;

}

.login-card{

    width:420px;

    background:#fff;

    border-radius:12px;

    padding:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.logo{

    text-align:center;

    margin-bottom:35px;

}

.logo h1{

    color:#3c547a;

    font-size:34px;

}

.logo p{

    color:#7a7a7a;

    margin-top:8px;

}

.form-group{

    margin-bottom:18px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    color:#555;

    font-weight:bold;

}

.form-group input{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:8px;

    outline:none;

    transition:.2s;

}

.form-group input:focus{

    border-color:#3c547a;

}

.btn-login{

    width:100%;

    padding:14px;

    border:none;

    border-radius:8px;

    background:#3c547a;

    color:white;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.btn-login:hover{

    background:#304563;

}

.version{

    text-align:center;

    margin-top:25px;

    color:#999;

    font-size:13px;

}