@font-face {
    font-family: 'navine';
    src: url('NavineDemo-SemiCondensed.ttf');
}
.animate-quote {
    animation-duration: 0.5s;
    animation-name: animate-fade-in;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
}
.animate-arrow {
    animation-duration: 0.5s;
    animation-name: animate-fade-in;
    animation-delay: 1.5s;
    animation-fill-mode: backwards;
}
.animate-all-out {
    animation-duration: 0.5s;
    animation-name: animate-fade-out;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
.animate-form-in {
    animation-duration: 0.5s;
    animation-name: animate-fade-in;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
.animate-form-out {
    animation-duration: 0.5s;
    animation-name: animate-fade-out;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
}
@keyframes animate-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes animate-fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
body, form {    
    color: white;
    font-family: navine;
    overflow: hidden;
}
body {
    background-image: linear-gradient(135deg, #111111, #123456);
    background-size: 100vw 100vh;
}
form {
    margin-top: -300px;
}
li {
    color: #000000;
    margin-top: 10px;
}
input {
    /*background-color: #222222;*/
    background-image: linear-gradient(135deg, #111111, #081624);
    color: white;
    font-family: navine;
    border: 0px;
    border-bottom: 1px solid #666666;
    font-size: 32px;
    overflow: hidden;
}
label {
    color: white;
    font-family: navine;
    font-size: 32px;
    overflow: hidden;
}
.center {
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.quote-text, .quote-text-orange {
    margin-top: 20%;
    height: 100%;
    font-size: 60px;
    font-weight: 900;
}
.quote-text-orange {
    color: #ff8800;
}
.arrow {
    margin-left: 80%;
    margin-top: 10%;
    font-size: 50px;
    color: #666666;
    cursor: pointer;
}
.link
{
    text-decoration: none; 
    background-color: none;
}
.main-page-body {
    /*background-image: linear-gradient(180deg, #111111, #123456);
    */
    background-image: url("6/resources/img-4.jpg");
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
}

.glass, .top-panel-item {
    backdrop-filter: blur(60px) saturate(200%) brightness(80%);
    -webkit-backdrop-filter: blur(60px) saturate(200%) brightness(80%);
    border-radius: 7px;
}
.card {
    margin-left: 15%;
    margin-top: 50px;
    width: 70%;
    height: 70%;
}
.top-panel {
    width: 100%;
    height: 60px;
}
.top-panel-item, .top-panel-logo-text, .top-panel-account {
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: inline-block;
    backdrop-filter: brightness(115%);
    line-height: 60px;
    color: #fff;
}
.top-panel-logo-text {
    margin-left: 20px;
    font-size: 40px;
}
.top-panel-notification {
    float: right;
    margin-right: 20px;
    font-size: 20px;
}
.top-panel-account {
    float: right;
    margin-right: 20px;
    font-size: 25px;
}

#start-from-scratch {
    margin-left: 28%;
    margin-top: 10%;
    font-size: 20px;
    color: #666666;
    cursor: pointer;
    float: left;
}
#link-preexisting-account {
    margin-left: 25%;
    font-size: 20px;
    color: #666666;
    cursor: pointer;
    float: left;
}
#submit {
    cursor: pointer;
}
#user-setup-form {
    opacity: 0;
}