.area-login-background{
    height: 100vh;
    width: 50%;
    display: block;
    float: left;
    background-image: url('./../../../assets/background-login.png');
    background-size: 100% auto;

    background-position: center bottom no-repeat;
    overflow: hidden;
}
.area-form{
    height: 100vh;
    width: 40%;
    float: right;
    background-color: #fff;
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}
.subtitulo{
    font-size: 20px;
    font-weight: 400;
    color: #1c1c1c;
    text-align: center;
    margin: 0 0 30px 0;
    text-align: center;
    margin-bottom: 40px;
}
.input-form{
    overflow: hidden;
    padding: 12px 10px;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 32px;
    transition: 0.3s linear all;
    box-shadow: inset 1px 1px 2px #babe, inset -1px -1px -2px #babe;
    &:focus{
        border: 1px solid darkviolet;

    }
}
.btn{
    padding: 12px;
    width: 100%;
}
.footer{
    position: absolute;
    bottom: 4px;
    font-weight: 400;
    font-size: 20px;
    color: #000;
    height: 40px;

    > span{
        font-weight: 600;
        color: darkviolet;
    }
}

  .th-btn{
    text-align: center;
    border: 2px solid white;
    transition: 1s ease-in-out;
  }

  .fa-solid{
    color: darkviolet;
  }

  .th-btn:hover{
    color: darkviolet;
    transform: translateX(20px);
    cursor: pointer;
  }

@media only screen and (max-width: 800px){
    .area-form { 
        width: 100vw;
        background-image: url('./../../../assets/background-login.png');
        background-size: 100% auto;
    }
    .titulo{
        color: #fff;
    }
    .subtitulo{
        color: #fff;
    }
    .btn{
        width: 100%;
        color: #fff;
    }
    .footer{
        color: #000;
        font-weight: 700;
        height: 40px;
    
        > span{
            font-weight: 600;
            color: #fff;
        }
    }
}

@media only screen and (max-width: 400px){
    .area-form { 
        padding: 20px;
        width: 100vw;
        > .titulo{
            margin-bottom: 50px;
        }
    }
    .mobile{
        width: 100%;
    }
    .footer{
        text-align: center;
        padding: 10px;
    }
}