
html, body {
    margin: 0;
    padding: 0;

}

body {
    background-color: #001e50;
    font-family: VWTextWeb,Helvetica,Arial,sans-serif;
    font-size: 100%;
    color: #fff;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: VWHeadWeb,Helvetica,Arial,sans-serif;
    padding: 0;
    margin: 0 0 0.5rem 0;
    word-wrap: break-word;
}

h1.beauty {
    margin-bottom: 0;
}

h1, h3, h5 {
    font-weight: 700;
}

h2, h4, h6 {
    font-weight: 200;
}

h1, h2 {
    font-size: 400%;
}

h3, h4 {
    font-size: 180%;
}

h5, h6 {
    font-size: 180%;
}



@media (max-width: 960px) {
    h1, h2 {
        font-size: 300%;
    }
    
    h3, h4 {
        font-size: 130%;
    }
    
    h5, h6 {
        font-size: 130%;
    }
}    

.clear {
    clear: both;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
}

#ecloginwrapper {
    width: calc(100% - (2 * (100% / 12)));
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;

    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease; 
}

#ecloginwrapper.inactive {
    opacity: 0;
    pointer-events: none;
}

#ecstagewrapper {
    border: 0; 
    margin: 0;  
    padding: 0; 
    z-index: 500000;
    line-height: 0;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease; 
}

#ecstage {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); 
    width: 100%; 
    border: 0; 
    margin: 0; 
    padding: 0;
}

.outofstage {
    left: -100% !important;
}

.s1 {width: 10%;}
.s2 {width: 20%;}
.s3 {width: 30%;}
.s4 {width: 40%;}
.s5 {width: 50%;}
.s6 {width: 60%;}
.s7 {width: 70%;}
.s8 {width: 80%;}
.s9 {width: 90%;}
.s10 {width: 100%;}



@media (max-width: 1200px) {
    .s1, .s2, .s3, .s4, .s5, .s6, .s7, .s8, .s9, .s10 {
        width: 50%;    
    }
}

@media (max-width: 960px) {
    .s1, .s2, .s3, .s4, .s5, .s6, .s7, .s8, .s9, .s10 {
        width: 100%;    
    }
}

.mt2 {
    margin-top: 2rem !important;
}

.mt3 {
    margin-top: 3rem !important;
}

form {
    width: 40%; 
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; 
}

form div {
    position: relative;
}



label {
    display: block;
    position: absolute;
    top: 2rem;
    left: 0.2rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 90;
}

input {
    outline-width: 0;
    box-shadow:none;
    border-color:transparent;
    position: relative;
}


input[type=text], input[type=password] {
    margin: 1.5rem 0 0 0;
    width: 100%;
    box-sizing: border-box;
    border: 0px solid #fff;
    border-bottom-width: 1px;
    background-color: transparent;
    color: #fff;
    font-size: 100%;
    padding: 0.5rem 0.2rem;
    z-index: 100 !important;
}

input[type=text]:focus + label, input[type=password]:focus + label,
input[type=text]:not([value=""]):not(:focus) + label, input[type=password]:not([value=""]):not(:focus) + label {
    color: #4cc7f4;
    font-size: 90%;
    top: 0.5rem;
}

#loginerror, #finderror {
    background-color: transparent;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    margin-top: 0.5rem;
    width: fit-content;
    display: block;
}

#loginerror.show, #finderror.show {
    background-color: #e4002c;
}

button {
    display: block;
    margin: 0 auto;
    width: 10rem;
    height: 2.8rem;
    padding: 0 1rem;
    border-radius: 3rem;
    border-style: none;
    font-family: VWTextWeb,Helvetica,Arial,sans-serif;
    font-size: 100%;
    color: #001e50;
    background-color: #fff;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}



button:hover {
    background-color: #4cc7f4;
    outline: none;
}