body {
    background: linear-gradient(#fff, #fff);
    height: 100vh;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: #303030;
    font-family: 'Nunito', sans-serif;


}

.img-logo-erasto-png {
    max-width: 400px;
    height: auto;
}

.container-block {
    background: #FFFFFF;
    box-shadow: 0px 8px 5px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    width: 70%;
    padding: 20px;
    padding-bottom: 60px;
    max-width: 1000px;
    text-align: center;
    margin-top: 24px;
}

.img-width-95 {
    max-width: 95px;
    border-radius: 100%;

}

.justify-content-space-between {
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.title-login {
    text-align: center;
    text-decoration: underline;
    font-size: 48px;
}

.group-input {
    margin-bottom: 12px;
    margin-top: 12px;
}

.group-input>label {
    display: block;

}

.input-rounded {
    border: 1px solid #797979;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 32px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 24px;
    padding-left: 24px;
    text-align: center;
    outline: none;
    font-weight: bold;
    color: #303030 !important;
    min-width: 300px;
}

.input-rounded:focus {
    transform: scale(1.1);
    border: 2px solid #3F6098;
}

.btn-rounded-person {

    background: #3F6098;
    border: 1px solid #797979;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    min-width: 320px;
    color: white;
    font-size: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.4s;
}

.btn-rounded-person:hover {
    transform: scale(1.1);
}

footer {
    text-align: center;
}

@keyframes rotation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: rotate(1.2);
    }
}

.animate-img {
    animation: rotation 1500ms infinite;
}

.text-color-primary {
    color: #3F6098;
}

.text-color-primary:hover {
    transform: scale(1.1);
    color: #3F6098;
}

@media screen and (max-width:600px) {
    .container-block {
        width: 95%;
    }

    .img-logo-erasto-png {
        max-width: 300px;
    }
}