body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #eee;
    font-family: 'Roboto', sans-serif;
}
.flex {
    display: flex;
}
.text-red {
    color: red;
}
.env-warning {
    text-align: center;
    width: 220px;
    margin: 17px auto 0;
    border-radius: 20px;
    padding: 3px 0;
    background-color: #f6b4b4;
    box-shadow: 0 0 10px 0px rgb(255 154 154);
}


/* Loader */
.loader-container {
    display: none;
}
.loader {
    border: 6px solid #f3f3f3;     /* Light Grey */
    border-top: 6px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
/* End - Loader */


.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-container {
    width: 800px;
    background-color: #fff;
    padding: 20px;
    margin: 0 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Title */
.login-container h1 {
    text-align: center;
    margin: 10px 0 30px 0;
}
.sub-title {
    font-weight: 100;
}
/* End - Title */


/* Login picture */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-right: 1px solid #eee;
}
.login-image {
    width: 100%;
}
/* End - Login picture */


.form-container {
    width: 50%;
    padding: 0 10px 0 30px;
}

.form-container form {
    display: flex;
    flex-direction: column;
}


/* Message */
.login-message {
    background-color: #ffd7d7;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.login-message__alert-icon {
    color: #e0564b;
    border: 2px solid #e0564b;
    border-radius: 13px;
    padding: 0 7px;
    font-weight: 700;
    margin-right: 5px;
}
/* End - Message */


/* Inputs */
.input-block input {
    width: 93%;
    font-size: 16px;
    margin-top: 7px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.input-block label {
    font-weight: 300;
}
/* End - Inputs */


/* Remember me */
.remember_me-block {
    position: relative;
    display: flex;
    margin: 15px 0 5px;
    justify-content: space-between;
}
.remember_me-block input {
    height: 18px;
    width: 18px;
    margin-top: 7px;
    margin-right: 16px;
}
.remember_me-block label {
    position: absolute;
    top: 7px;
}
/* End - Remember me */


/* Submit */
.submit-box input {
    background-color: #6898d0;
    font-size: 16px;
    color: white;
    cursor: pointer;
    width: 100%;
    margin-top: 7px;
    padding: 12px;
    border: 0px;
    border-radius: 3px;
    transition-property: background-color;
    transition-duration: 300ms;
}
.submit-box input:hover {
    background-color: #5074a1;
}
/* End - Submit */


@media only screen and (max-width: 520px) {
    .image-container {display: none;}
    .form-container {width: 100%; padding: 0 20px;}
}
@media only screen and (max-width: 767px) {
    .login-image {margin-bottom: 50px;}
}