
#loginPage {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 95%;
    height: 100%;
    background-color: #A9FFF7;
    margin: 1vi;
    border-radius: 16px;
}
.loginElements {
    border-radius: 10px;
    size: 100%;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#loginText {
    color: white;
}


#loginBtn {
    background-color: white;
    color: #A9FFF7;
    height: 8px;
    width: 200px;
    border-radius: 8vh;
    border: none;
    margin-top: 10px;;
    padding: 15px 32px;
}



.detailsInput{
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: none;
    outline: 0;
    text-align: center;
}
.detailsInput:hover{
    box-shadow: 0 0 0 0.2rem #96a7c1;
}
.detailsInput:focus{
    box-shadow: 0 0 0 0.1rem #96a7c1;
}
.detailsInput:invalid{
    box-shadow: 0 0 0 0.1rem #E29578;
}




@media (min-width: 720px){
    #loginForm{

        padding: 10%;
        border-radius: 8vh;
    }

    body{
        background-color: white;
    }
}