body{

    background:#f4f7fb;

    display:flex;

    justify-content:center;

    align-items:center;

    height:100vh;

    font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

}

h2{

    font-weight:700;

    letter-spacing:-.01em;

}

.login-container{

    width:100%;

    display:flex;

    justify-content:center;

}

.card-login{

    width:420px;

    background:white;

    border-radius:18px;

    padding:45px;

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

    text-align:center;

}

.logo{

    width:110px;

    margin-bottom:20px;

}

.form-control{

    height:50px;

}

.btn-success{

    background:#00794a;

    border:none;

    height:50px;

    font-weight:600;

}

.btn-success:hover{

    background:#065c38;

}

small{

    display:block;

    margin-top:25px;

    color:#777;

}

/* Melhorias */
.card-login{
    transition:.25s;
}
.card-login:hover{
    transform:translateY(-2px);
}
.form-control:focus{
    box-shadow:0 0 0 .2rem rgba(0,121,74,.15);
    border-color:#00794a;
}
