body {
    margin: 0;
    padding: 0;
    background-color: #eeeefd;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}
a {
    text-decoration: none;
    cursor: pointer;
}

.nodisplay {
    display: none;
}

/* ------------------------------------------------------------------------ PAGE*/
.page {
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(#83572c 1.5px, transparent 1.5px), radial-gradient(#83572c 1.5px, transparent 1.5px);
    background-size: 48px 48px;
    background-position: 0 0, 24px 24px;
    background-color: #89775e;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes ance {
    0% {margin: 0px 0px 20px -400px;}
    100% {margin: 0px 0px 20px 0px;}
}
.textTitle {
    font-size: 60px;
    color: #e7e7e7;
    font-family: "Maname", serif;
    font-weight: 400;
    font-style: normal;
    filter: drop-shadow(5px 5px 4px #22222217);
    margin: 0px 0px 20px 0px;
    position: absolute;
    z-index: 2;

}
.textEnter {
    font-size: 18px;
    color: #e7e7e7;
    margin-top: 80vh;
    cursor: pointer;
}

.elementCentral{
    width: 300px;
    height: 300px;
    border-radius: 50% 43% 55% 42%;
    background-image: radial-gradient(#ff8000 1.5px, transparent 1.5px), radial-gradient(#ff8000 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    background-color: #ff972e;
    filter: drop-shadow(5px 5px 4px #22222217);
    position: absolute;
    z-index: 1;
}


@keyframes login {
    0% {margin-top: -150px;}
    100% {margin-top: 0px;}
}
.loginElement {
    width: 400px;
    height: 140px;
    border-radius: 0px 0px 60% 40%;
    background-image: radial-gradient(#ff8000 1.5px, transparent 1.5px), radial-gradient(#ff8000 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    background-color: #ff972e;
    filter: drop-shadow(5px 5px 4px #22222217);
    position: absolute;
    z-index: 100;
    animation-name: login;
    animation-duration: 2s;
}
#form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#loginInput {
    width: 140px;
    height: 40px;
    background-color: #e7e7e7;
    border: solid 3px #ff8000;
    border-radius: 10px 20px 8px 16px;
    font-size: 20px;
    color: #83572c;
    text-align: center;
    margin-bottom: 10px;
}
#submit {
    width: 60px;
    height: 44px;
    background-color: #89775e;
    border: none;
    border-radius: 18px 10px 16px 9px;
    color: #e7e7e7;
    font-size: 16px;
    margin-left: 10px;
    margin-bottom: 10px;
   /*  filter: drop-shadow(5px 5px 4px #22222217); */
    cursor: pointer;
}

@media only screen and (max-width: 600px){
    .textTitle {
        font-size: 50px;
    }
}
@media only screen and (max-width: 400px){
    .loginElement {
        width: 80%;
        height: 140px;
    }
    .elementCentral{
        width: 200px;
        height: 200px;
    }
    .textTitle {
        font-size: 40px;
    }
}