:root{
    --theme-color: #2b59a7;
}

html, body{
    width: 100%;
    height: 100%;

    overflow-y: hidden;
    /* background-color: #f9f2ec; */
    /* background-image: linear-gradient(rgba(0, 11, 21, 0.785), rgba(1, 20, 34, 0.699)), url(../files/components/sigin.jpg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover; */
}

.sign-form{
    width: 440px;
    min-height: 500px;
    background: white;
    border: 3px solid black;
    border-radius: 10px;
    font-family: "Plus Jakarta Sans";
    padding: 20px 30px;
}


.sign-form h4{
    font-family: "Sacramento";
    padding: 10px;
    color: var(--theme-color);
    font-weight: bold;
    text-align: center;
    font-size: 30px;
}

@media only screen and (max-width: 1200px){
    /*Tablets [601px -> 1200px]*/
    #loginInformation{
        display: none !important;
    }
}
@media only screen and (max-width: 600px){
	/*Big smartphones [426px -> 600px]*/
    #loginInformation{
        display: none !important;
    }
}
@media only screen and (max-width: 425px){
	/*Small smartphones [325px -> 425px]*/
    #loginInformation{
        display: none !important;
    }

    .container{
        padding: 0px !important;
        margin: 0px !important;
    }

    .bg-glass{
        width: 100svw;
        height: 100svh;
    }
}
