
html, body {
    font-family: "Open Sans", sans-serif;
    color: white;
    height: 100%;
    width: 100%;
    margin: 0;
}

.container {
    z-index: -1;
    background: radial-gradient(#40404b, #111118) rgba(34, 34, 40, 0.94);
    opacity: 0.9;
    height: 100%;
    width: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
}

.page {
    max-width: 850px;
    min-width: 300px;
    color: black;
}

.page-content {
    border-radius: 10px;
    padding: 11% 10% 5% 5%;
    background-color: rgba(241,241,241,0.98);
    box-shadow: 0 0 40px 4px #111118;
}

.main {
    margin: 10px;
}


@media (min-width: 768px) {
    .page-content {
        padding: 7% 7% 5% 5%;
    }
}

h1,h3 {
    font-size: 1.5em;
}

h4 {
    font-weight: normal;
    margin-bottom: 10px;
}

.logo {
    float: right;
    width: 112px;
    height: 98px;
    margin-top: -50px;
    margin-left: 25px;
    margin-right: 40px;
}

.email, .password {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    font-size: 1em;
}

.error {
    color: red;
    display: block;
    padding-top: 10px;
}

.button-submit {
    margin-top: 20px;
    width: 250px;
    line-height: 40px;
    background-color: #ffcc00;
    color: black;
    font-size:1.1em;
    max-width: 90%;
}
.button-submit:disabled {
    background-color: #b3b3b3;
    color: #666666;
}
.button-submit:not(:disabled):hover {
     background-color: #ffe066;
}

.radius {
    border-radius: 5px;
}

.expires {
    color: dimgray;
    text-align:left;
    margin-top: 10px;
    font-size: 0.8em;
}

.footer {
    font-size: 12px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 850px;
    min-width: 300px;
    padding-top: 10px;
    color: lightgray;
    padding-left:30px;
    padding-right:30px;
}
.footer a {
    color: white;
}

.footer a:hover {
    color: #ffcc00;
}
.footer div {
    margin-bottom: 3px;
}

.version {
    position: absolute;
    bottom: 20px;
    right: 30px;
    color: lightgray;
}