/* General */

html {
    font-size: 14px;
}

head {
    display: none;
}

body {
    font-family: 'Poppins', 'Verdana', 'Sans';
    background-color: #FAFAFA;
    color: #333;
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: auto;
    z-index: -2;
    display: block;
}

/* General */

/* Login */

div {
    display: block;
}

.login {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: normal;
    height: inherit;
    background-color: white;
}

.login>.column {
    max-width: 250px;
    overflow: hidden;
    margin-top: -70px;
}

.login>.column>.header {
    margin-top: 0px;
    margin-bottom: 30px;
}

.login>.column>.header img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

/* Formulario */

form {
    padding: 0;
    margin: 0;
    display: block;
}

.login>.column>form>div {
    margin: 25px 0;
}

.login>.column>form .sub {
    position: relative;
    margin-top: 25px;
}

.login>.column>form .submit {
    position: relative;
    background-color: #f37b55;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.5);
}

.login>.column>form .submit:hover {
    background-color: #f15b2b;
}

.login>.column>form .submit1:hover {
    background-color: #eeecf0;
}

.login>.column>form .submit1 {
    position: relative;
    background-color: white;
    color: black;
    margin-top: -15px;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.5);
}

.login>.column>form .forget {
    text-align: center;
    font-size: .95em;
    margin-top: 35px;
    cursor: pointer;
}

.login>.column>form p {
    margin: 5px 0;
}

.login input[type=text], .login input[type=password] {
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: 45px;
    border-radius: 18px;
}

.login button {
    margin: 0 auto;
    /* background-color: #009000; */
    border-radius: 25px;
    height: 50px;
    width: 100%;
    color: white;
    border: 1px solid #8b8685;
    font-size: 15px;
    cursor: pointer;
}

input[type=text], input[type=password] {
    border: 1px solid #ddd;
    transition: 0.2s ease-in;
    box-sizing: border-box;
    color: #333;
    text-align: left;
}

input:focus {
    outline: none;
    border: 1px solid black;
}

input, label {
    font-size: inherit;
    font-family: inherit;
}

.link:link, a:visited, a:active {
    color: inherit;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

p {
    margin: 0;
    display: block;
}
/* Formulario */
@media only screen and (max-width: 600px){
    .login>.column>form .sub {
            position: relative;
            margin-top: 10px;
        }
}

/* Login */