
.form-login{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: #49004823;
}
.form-login .logo{
    text-align: center;
}
.login-portal{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.forms{
    width: 40vw;
    border: solid 1px rgba(0, 0, 0, 0.295);
    box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.295);
    border-radius: 7px;
    background-color: #490048;
    text-align: center;
}
.forms button{
    background-color: #a1019f;
    color: white;
    font-weight: bold;
    
}
.forms button:hover{
    color: rgb(250, 150, 0);
}
@media (max-width: 1200px){
    .forms{
        width: 50vw;
    }
}
@media (max-width: 1000px){
    .forms{
        width: 60vw;
    }
}
@media (max-width: 700px){
    .forms{
        width: 80vw;
    }
}
@media (max-width: 600px){
    .forms{
        width: 98vw;
    }
    .logo img{
        width: 400px;
        flex-direction: column;
        justify-content: end;
        align-items: end;
    }
}


