/* Login/Password Reset */
* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #435165;
}

.login {
    width: 400px;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 100px auto;
    text-align: center;
    border-radius: 5px;
    /*border: 1px solid black;*/
}

#loginform {
    width: 90%;
    margin: auto;
}

.login h1 {
    color: #5b6574;
    font-size: 24px;
    font-weight: 500;
    padding: 16px 0 0 0;
}

.login form label {
    display: block;
    text-align: left;
}

.login form input[type="password"], 
.login form input[type="text"], 
.login form input[type="email"] {
    width: 100%;
    border: 1px solid #dee0e4;
    padding: 0 15px;
    float: left;
}

.login form input[type="submit"] {
    width: 100%;
    background-color: #3274d6;
    border: 1px solid #dee0e4;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
    margin-bottom: 15px;
    padding: 8px;
}

.login form input[type="submit"]:hover {
    background-color: #2868c7;
    transition: background-color 0.2s;
}

.form-group {
    width: 100%;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    margin-left: 6.25%;
}

.div-error, 
.div-message {
    width: 100%;
    height: 30px;
    color: red;
    font-size: 14px;
    text-align: center;
}

.div-message {
    padding-top: 5px;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

.form-control {
    border-radius: 4px;
    border-color: #dee0e4;
    box-shadow: none;
    padding: 10px 15px;
    height: 40px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #dee0e4;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -ms-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -khtml-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -ms-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -khtml-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

@media (max-width: 768px) {
    .login {
        width: 85% !important;
        margin: 50px auto;
    }
}