body{
    background-image: url("/images/home-screen.png");
}
.welcome {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 40px;
}
.welcome h1 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    width: 300px;
    text-align: center;
}
.welcome img {
    width: 120px;
}
.welcome .login_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 90%;
}
/* =================================== Login page ================================ */
.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}
.login .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.login .logo img {
    width: 120px;
}
.login .btn_back {
    position: absolute;
    top: 20px;
    left: 20px;
}
.login .btn_back .btn {
    background-color: var(--white);
    color: var(--black);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
}
.login .btn_back .btn:hover {
    background-color: var(--darkgreen);
    color: var(--white);
}
.section {
    width: 100%!important;

}

.form-width {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}
.form-login {
    display: flex;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    border-radius: 30px 30px 0 0;
    gap: 40px;
    position: absolute;
    height: 450px;
    bottom: 0px;
}
.form-login .title {
   text-align: center;
   width: 80%;
}
.form-login .title p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
.form-login .form_group a, p {
    font-size: 12px;
}
.form-login .btn{
    width: 100%;
}

/* ========================================================================================== */
@media screen and (min-width: 768px) {
    .btn{
        width: 50%;
    }
    .form-login {
        width: 50%;
        position: static;
        border-radius: 30px;
    }
    
}