/*Body*/

body {
    background: url(../img/login_background.png);
    background-size: cover;
}

/*Form*/

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 52px;
    width: 432px;
    background: #FBFBFB;
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

form>img {
    margin-bottom: 40px;
}

/*Form Login*/

.form-login {
    margin-bottom: 16px;
}

.form-login p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #A3A3A3;
    margin-bottom: 8px;
    margin-left: 4px;
}

.form-login input {
    padding: 15px 16px;
    width: 328px;
    height: 52px;
    background: #FBFBFB;
    border: 1px solid #A3A3A3;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #464646;
}

.form-login input::placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #A3A3A3;
}

/*Button Login*/

.button-login {
    width: 328px;
    height: 49px;
    background: #369321;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: #FBFBFB;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    border: none;
}

/*Button Recover Login*/

.button-recover-login {
    width: 328px;
    height: 49px;
    background: #369321;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: #FBFBFB;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    border: none;
    display: none;
}

/*Button Recover*/

.button-recover {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #166654;
    background: none;
    margin-top: 24px;
    cursor: pointer;
    margin-bottom: 0;
}

.button-recover::after {
    content: "Esqueci minha senha";
}

/*Message Recover*/

.message-error {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #DD4539;
    margin-bottom: 0;
}

/*Recover Pass*/

.message-recover {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #A3A3A3;
    display: none;
    margin-bottom: 0;
}

form.recover .form-login:nth-child(3) {
    display: none;
}

form.recover .button-login {
    display: none;
}

form.recover .button-recover-login {
    display: flex;
}

form.recover .button-recover::after {
    content: "Cancelar";
}

form.recover .message-recover {
    display: block;
}