/* DEFAULTS */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*::after,
*::before {
    box-sizing: inherit;
}

html {
 margin: 0;
    height: 100%;
}

body {
    font-family: 'Raleway', 'Roboto', sans-serif;
    background-color: #edf0f1;
}

a {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 6px 6px 2px 12px;
    color: #001e2a;
}

/* CONTENT */

.loginContainer {
    display: grid;
    padding: 15px;
	min-height: 100vh;
}

.loginContainerBackground {
    grid-column: 1;
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19);
}

.loginContainerForm {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19);
}

.event {
    position: relative;
    padding-left: 10px;
}

.eventLog {
    width: 400px;
    max-width: 400px;   
    outline: 2px solid blue; 
    margin-left: 10px; 
    white-space: pre-wrap; 
    display: block;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #001e2a;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #ffffff;
}

#loadingcontainer {
    position: absolute;
    top: 500px;
}

#footer {
    background-color: #001e2a;
    color: #4e8695;
    height: 70px;
}

ul.footer-contact {
    list-style: none;
    font-size: 12px;
    color: #ffffff;
}

.grid-container {
   display: grid;
   margin-left: 90px;
   grid-template-columns: 10% 45% 45%;
   grid-template-rows: 20% 40% 40%;
   grid-template-areas: "topContainer topContainer topContainer" "leftSideContainer middleContainer middleContainer" "leftSideContainer middleContainer middleContainer"
}

.topContainer { 
    grid-area: topContainer; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.chartContainerTop {
    overflow: hidden;
    height: 194px;
    max-width: 1000px;
    padding-top: 45px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.chartContainerTopStatScreen {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leftSideContainer {
    grid-area: leftSideContainer;
    display: flex;
    top: 25%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 400px;
    max-width: 400px;
    max-height: 400px;
    margin-left: 100px;
    overflow-x: auto;
    overflow-y:auto;
    position:absolute;
    z-index: 999;
    /* align-self: self-start; */
}

.middleContainer {
    grid-area: middleContainer;
    display: flex;
    align-items: flex-start;
}

.chartContainerMiddle {
    max-width: 1200px;
    width: 1000px;
    height: 420px;
    padding-top: 10px;
}

/* FORM */

#icon {
    width: 60%;
}

.fa-lock {
    padding: 20px;
    color: #ba8731;
}

input[type=button],
input[type=submit],
input[type=reset] {
    background-color: #025268;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    width: 200px;
    font-size: 13px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 6px 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: #4e8695;
}

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],
input[type=password] {
    background-color: #f6f6f6;
    color: #025268;
    padding: 15px 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=text]:focus {
    background-color: #fff;
    border-bottom: 2px solid #025268;
}

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

.error {
    color: red;
    font-style: italic;
}

#psw_reset {
    margin-bottom: 10px;
    display: block;
}

/* ANIMATIONS */

/* CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;

    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

/* 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%;
}

*:focus {
    outline: none;
}

/** ANIMATED CHECKBOX **/

ul.checkboxtags {
    list-style: none;
    padding: 2px 12px;
    margin: 8px;
    }
/*
 ul.checkboxtags li{
  display: inline;
} */



