#loader{
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: #DBA970;
    transition: opacity 0.8s ease;
}

.loader img{
    margin: 90% 36%;
    align-self: center;
    transform: scale(1.2);
}

#loader.fade-out {
    opacity: 0;
}


.ruge-boogie-regular {
    font-family: "Ruge Boogie", cursive;
    font-weight: 400;
    font-style: normal;
}

.caveat-brush-regular {
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
    font-style: normal;
}

.highlighted {
    background-color: rgba(0,0,0,.5);
}

body {
    font-family: "Ruge Boogie", cursive;
    font-weight: 400;
    font-style: normal;
    background: url('img/sworlport.jpeg');
    overflow: hidden;

    width: 100%;
    height: 80vh;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    grid-template-areas:
    "header header header header header header"
    ". main main main main ."
    ". main main main main ."
    "footer footer footer footer footer footer";
}

.loginContainer{
    grid-area: main;
    margin:auto;
    width: 63%;
    height: 60%;
    align-self: center;
    transform: scale(1.45);
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: url('img/stars.jpg');
}

.identityForm{
    display: flex;
    flex-direction: column;
}
.identityForm label {
    margin: 10% 38% 15% 10%;
    color: aliceblue;
    font-weight: bold;
    font-size: 60px;
    padding-left: 20px;
    border-radius: 25px;

}
.identityForm input{
    font-family: "Ruge Boogie", cursive;
    margin: 0 20%;
    background-color: hsla(30, 100%, 50%, 0.4);
    color: #F0ECEB;
    width: 60%;
    height: 100px;
    border-radius: 25px;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
}

.identityForm button{
    font-family: "Caveat Brush", cursive;
    background: #6D679E;
    color: white;
    margin: 20% 20% 0 20%;
    width: 60%;
    height: 100px;
    font-size: 40px;
    text-align: center;
    border-radius: 15px;
    transition: background-color 0.15s ease-in-out;
}

.identityForm button:active{
    background: #8D85C9;
}

#error-message{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    white-space:pre;
}