/* LOGIN FORM */

/* .login {
    background: #e71e1e;
} */


.login #content-main {
    width: 25%;
    height: 67%;
    background-color: rgba(88,88,90, 0.7);
    padding: 2em 2em;
    border-radius: 1em;
}

.login #header {
    height: auto;
    padding: 15px 16px;
    justify-content: center;
}

.login #header h1 {
    font-size: 18px;
}

.login #header h1 a {
    color: #fff;
}

.login #content {
    padding: 20px 20px 0;
}

.login #container {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    width: 28em;
    min-width: 300px;
    margin: 100px auto;
}


.login .form-row {
    padding: 4px 5px;
    float: left;
    width: 100%;
    border-bottom: none;
    margin-left: auto;
    margin-right: auto;

}

.login .form-row label {
    padding-right: 0.5em;
    line-height: 2em;
    font-size: 1em;
    clear: both;
    color: #333;
}

.login .form-row #id_username, .login .form-row #id_password {
    clear: both;
    padding: 8px;
    width: 100%;
    font-size: var(--default-font-size);
    border-radius: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}


.login span.help {
    font-size: 10px;
    display: block;
}

.login .submit-row input{
    clear: both;
    /* padding: 1em 0 0 9.4em; */
    font-size: var(--default-font-size);
    padding: 0.3em 0;
    width: 100%;
    margin-top: 1em;
    border: none;
    background: none;
    text-align: center;
    
    border: none;
    border-radius: 20rem;
    border-color: white;
    background-image: linear-gradient(to right, #9c83c5 0%, #77a1d6  51%, #60c7c8 100%);

}

.login .password-reset-link {
    text-align: center;
}

.login .login-btn-grad, .default_button {
    margin: 5px 5px;
    border: none;
    border-radius: 20rem;
    border-color: white;
    background-color: transparent;
    padding: 2px 5px;
    font-size: var(--smaller2-font-size);
    text-decoration: none;
    background-image: linear-gradient(to right, #9c83c5 0%, #77a1d6  51%, #60c7c8 100%);
}

.login .login-btn-grad:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
}

.default_button{
    color: white;
    padding: 0.2em 30px;
    font-size: var(--default-font-size);
}

@media only screen and (max-width: 1181px) {
    
    .login #content-main {
        width: 40%;
        height: 75%;
    }

}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 30px;
}

.slider.round:before {
    border-radius: 50%;
}

.enter_page{
    display: none;
}