
@import url(/_fidx/css/jost.css);

html { width: 100%; height:100%; overflow:hidden; }
/* https://codepen.io/colorlib/pen/rxddKy 
     https://colorlib.com/wp/template/creative-login-form/
 */

html, body, form, input, label, button, p {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-feature-settings:"ss01";
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;            
}

iframe { 
    position: absolute; 
    top: -1px; 
    left:-1px; 
    float: left; 
    clear: both;
    width: 100%;
    height: 100%;
    z-index: 0; 
    filter: blur(2px); 
    pointer-events: none;
}

form {
    max-height: 300px;
    opacity: 1;
    display: block;
    transition: all .5s ease-in; 
}


.login-page {
    width: 360px;
    padding: 8% 0 0;
    margin: auto;
    animation: animatezoom 0.2s ease-in;
}


.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 45px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    overflow:hidden;
}

.form .collapsed {
    visibility: hidden; 
    opacity: 0; 
    max-height: 0;
    transition: all .5s ease;  
}

.form input[type=text], input[type="password"] {
    outline: 0;
    background: #f0f0f0;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

.form input:focus { 
    outline: 1px solid #ccc;
    background: #f8f8f8;
} 

.form input[type=checkbox] {width: auto; margin: 10px}

.form label{
    display: inline-block;
    color: #777;
    text-align: left;
    margin: 0 0 15px;
    font-size: 15px;
    font-weight: 500;
}

.form button {
    text-transform: uppercase;
    outline: 0;
    background: #4CAF50;
    width: 100%;
    border: 0;
    padding: 16px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; 
    cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
    background: #43A047;
}
.form .message {
    margin: 15px 0 0;
    color: #666;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}
.form .message a {
    color: #4CAF50;
    text-decoration: none;
}
.form .choose button {
    text-align-last: center;
    width: 40%;
}
.form .choose {
    text-align-last: justify;
    transition: all .5s ease;
    z-index: 1;
    position: relative;
}
.form .choose p{
    text-align-last: center;
    margin: 0 0 15px;
}
.form .choose img {
    display:block; margin: auto; width:200px; height:200px;
}
.wait, .wait * {
  /*pointer-events: none !important;*/
  transition: none !important;
  cursor: wait !important;
}
.hidden { 
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease-in;
}
.show {
  visibility: visible;
  opacity: 1;
}
@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}
