.container-forms{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    column-gap: 30px;
    box-sizing: border-box;
}
.form-login{
    position: absolute;
    max-width: 430px;
    width: 100%;
    padding: 0 30px 30px 30px;
    border-radius: 6px;
    background: #FFF;
}

.form-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #212529;
    text-align: center;
}

.logo-login {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.form {
    margin-top: 30px;
}

.form .field {
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}

.field input,
.field button {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}

.field input {
    outline: none;
    padding: 0 15px;
    border: 1px solid #CACACA;
}

.field input:focus {
    border-bottom-width: 2px;
}

.field button {
    color: #FFF;
    background-color: #8AA132;
    transition: all 0.3s ease;
    cursor: pointer;
}

.field button:hover {
    background-color: #b4d347;
}

@media screen and (max-width: 400px) {
    .form {
        padding: 20px 10px;
    }
}

.form-link{
    text-align: end;
    margin-top: 10px;
}
.form-link span,
.form-link a{
    font-size: 14px;
    font-weight: 400;
    color: #232836;
}

.m-fadeOut {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 300ms, opacity 300ms;
}