@media (prefers-color-scheme: dark) {
   .login-box {
       background-color:black !important;
   }
   .login-page-button {

    background-color:#008b4d !important;
   }

   .login-page-input {
    color:white !important;
    background-color:#333333 !important;
   }

   .login-page-input::-webkit-input-placeholder {
    color:#efefef !important;
   }
}

.login-box {
    width:340px;
    min-height:380px;
    height:auto;
    background-color:white;
    margin: 0 auto;
    margin-top:10px;
    box-sizing:border-box;
    border-radius:4px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    display:flex;
    flex-direction: row;
    border-left:0px;
    border-right:0px;
    border-bottom:0px;
    overflow:hidden;
}

@media screen and (max-width: 990px) {
    .login-box {
        position:fixed;
        top:0px;
        bottom:0px;
        left:0px;
        right:0px;
        height:100%;
        width:100%;
        margin-top:0px;
        border-radius:0px;
        /* border-top:solid 30px #007bff; */
    }
}

.login-container {
    padding-top:100px;
}

.login-page-notifier {
    height:15px;
    width:100%;
    text-align:center;
    line-height:15px;
    font-size:12px;
    color:#EB4D4D;
    margin-top:10px;
    margin-bottom:10px;
}

.login-page-hero {
    width:00%;
    height: 100%;
    background-position-x: -100px;      
    background-size: auto 100%;  
    order:1;
}

.login-page-hero-image {
    opacity:0.9;
    height:100%;
    width:100%;
    background-color:#B0F1E8;    
}

.login-page-form {
    width:100%;
    height: 100%;
    order:1;
    box-sizing: border-box;
    padding:40px;
    padding-top:70px;
}

.login-page-button {
    width:100%;
    height:40px;
    background-color:#3ecf8e;
    color:white;
    text-align: center;
    line-height:40px;
    border-radius:4px;
    cursor: pointer;
    font-size:14px;
    margin-top:6px;
    user-select: none;
}

.login-page-input {
    width:100%;
    height:40px;
    border:#007bff solid 1px;
    border-radius:3px;
    margin-bottom:15px;
    box-sizing: border-box;
    padding-left:10px;
    padding-right:5px;
    font-size:14px;
}

.login-page-input:focus {
    outline: none;
    border:#007bff solid 1px;
}

.login-page-input::-webkit-input-placeholder {
    color:#6b7c93;
    font-size:12px;
}    

.login-page-signup {
    font-size:11px;
    color:#6b7c93;
    width:100%;
    text-align: center;
    margin-top:32px;
}

.login-page-signup a {
    text-decoration:none;
    color:#007bff;
}    

.login-page-password-forgotten {
    font-size:11px;
    color:#6b7c93;
    width:100%;
    text-align: center;
    margin-top:22px;
}

.login-page-password-forgotten a {
    text-decoration:none;
    color:#007bff;
} 

.login-page-title a {
    color:#007bff;
    text-decoration: none;
}

.login-page-title {
    color:#007bff;
    text-align:center;
    margin-bottom:50px;
    user-select: none;
    font-size:22px;
    font-weight: bold;
    margin-top:20px;
    margin-bottom:60px;
}

.login-page-sign-in-icon {
    font-size:20px;
    margin-top:11px;
}

.logout-page-text {
    text-align:center;
    padding:20px;
    box-sizing: border-box;
}

.logout-page-text a {
    text-decoration:none;
    color:#007bff;
}

.login-background{
    width: 100%;
    height: 100%;
    padding:30px;
    position:absolute;
    box-sizing: border-box;
    overflow: hidden;
    transform-origin: 0;
    z-index:-10;
    background-color:var(--secondary-color);
  }
 
@media only screen and (max-width: 980px) {  
    .container-main {
        width:100%;
    }
}

@media only screen and (max-width: 416px) {  
    .login-box {
        width:100%;
        min-height:100%;
        margin:0px;
        position:absolute;
        top:0;
        bottom:0;
    }

    .container-main {
        min-height:100%;
        padding:0px;
    } 

    .container {
        min-height:100%;
    } 

    input[type='text'],
    input[type='number'],
    textarea {
      font-size: 16px;
    }    
}