/* BASIC */
body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

#login-footer a {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    margin-left: 4px;
    margin-right: 4px;
}

label {
    text-align: center;
    font-size: 12px;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #3E4347;
}

/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    height: 100%;
}


#form-header {
    background-color: #CEDFF5;
    border-bottom: 1px solid #dce8f1;
    padding: 12px;
    text-align: right;
    -webkit-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
    font-size: 110%;
    font-weight: bold;
    color: #3E4347;
}

#form-content {
    bottom: 60%;
}

.form-content {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    width: 90%;
    max-width: 450px;
    position: absolute;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
}

#form-content-center {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    width: 90%;
    max-width: 450px;
    position: absolute;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
}

#form-footer {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 12px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

#login-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#login-button {
    margin-top: 10px;
}


/* TABS */

label.inactive {
    color: #cccccc;
}

label.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}


/* FORM TYPOGRAPHY*/

.warning {
    text-decoration: none;
    color: #B40404;
}

.message {
    padding: 8px 32px;
    text-align: left;
    text-decoration: none;
    color: cornflowerblue;
}

.introduction {
    text-decoration: none;
    color: cornflowerblue;
    padding-top: 15px;
}

input[type=button], input[type=submit], input[type=reset] {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 8px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
    box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 20px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
    background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

input[type=text] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 8px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder {
    color: #cccccc;
}

input[type=password] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 8px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=password]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
}

input[type=password]:placeholder {
    color: #cccccc;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after {
    width: 100%;
}

section {
    top: 68%;
    position: absolute;
    text-align: center;
}

section img {
    max-width: 140px;
    max-height: 140px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 70px;
    border: 2px solid #04A09B;
}

section article {
    float: left;
    width: 33%;
    display: inline-block;
}

article div {
    text-align: center;
}

/* OTHERS */

*:focus {
    outline: none;
}

#icon {
    width: 60%;
}

.feedHeader {
    text-align: center;
    color: black;
}

.feedLink {
    color: #04A09B;
}

.feedLink::before {
    content: '> ';
}

.feedArticle {
    margin-bottom: 20px;
    border-style: solid;
    border-width: 10px !important;
    border-color: white;
    color: #666;
    font-size: smaller;
    text-align: center;
}

.feedArticle label {
    margin-top: 8px !important;
}

.loader {
    text-align: center;position: fixed; z-index: 99; width: 100%; height: 100%; top: 0; left: 0; display: flex;
    justify-content: center; align-items: center
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.loader.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}

.blur {
    filter: blur(2px) !important;
}

.need-help {
    padding-top: 60px;
}

.need-help div {
    text-align: center;
}

.need-help-button {
    padding-top: 20px;
}

.need-help-button a {
    width: 72%;
    border-radius: 5px;
    background-color: #56baed;
    color: white;
}

.need-help div h2 a {
    font-weight: 500;
    color: #4E4E4E;
    text-decoration: none;
}

.need-help div label a {
    font-weight: 500;
    color: #4E4E4E;
    text-decoration: none;
}

.mdc-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    border: none;
    outline: none;
    line-height: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    overflow: visible;
    vertical-align: middle;
    background: transparent;
    padding: 0 16px 0 16px;
    font-size: 0.875rem;
    letter-spacing: 0.0892857143em;
    font-weight: 500;
    text-transform: uppercase;
    height: 36px;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}

.tips-link {
    font-size: 19px;
    margin: 20px 8px 10px 8px;
    text-align: center;
    display: inline-block;
    color: #3E4347;
}