.loginContainer{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-direction: column;
}

.logo{
    width: 200px;
    height: auto;
}

.inputContainer{
    width: 20%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.formEmail{
    width: 40%;
}

.button{
    width: 100%;
}

#textHighlight{
    align-self: flex-end;
    color: var(--orange);
    cursor: pointer;
}

.formSubmit{
    margin-top: 30px;
}

.buttonSquare{
    width: 20%;
    min-width: 250px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    cursor: pointer;
    transition: all .2s ease-in-out;
    border-radius: 20px;
    font-size: 1vw;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.buttonSquare:hover{
    transform: scale(1.07);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.61);
}

h2{
    font-size: 1.2vw !important;
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {

    .inputContainer{
        width: 80%;
    }

    .formInput, .button{
        font-size: 15pt;
    }
    
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) { 
     
    .buttonSquare{
        font-size: 3vw;
    }    

    h2{
        font-size: 3vw;
    }
}
