@import url('https://fonts.googleapis.com/css?family=Lato');
@import url('general.css');
@import url('header.css');
@import url('footer.css');

.login-form {
    width: 90%;
    max-width: 510px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0px 15px #00000024;
    border-radius: 5px;
}

.login-form .title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.w-100 {
    width: 100%;
    flex-grow: 1;
}

.w-50 {
    width: 49%;
    min-width: 230px;
    flex-grow: 1;
}

.w-20 {
    width: 50%;
    flex-grow: 1;
    min-width: 170px;
}

.login-form input {
    padding: 15px;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

input[type=text] {
    text-transform: uppercase;
}

input[type=email] {
    text-transform: lowercase;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
    box-shadow: 0 0 5px dodgerblue;
}

input[type=text]:hover:not([disabled]),
input[type=email]:hover:not([disabled]),
input[type=password]:hover:not([disabled]) {
    box-shadow: 0 0 3px gray;
}

input[type=submit] {
    width: 300px;
    max-width: 150px;
    border-radius: 0;
    border: 0;
    background-color: #d49f51;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    transition: ease 0.5s;
    padding: 12px;
    margin-top: 5px;
}

input[type=submit]:hover:not([disabled]) {
    cursor: pointer;
    filter: brightness(90%);
    color: #000;
}

::placeholder {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.3);
    text-transform: lowercase;
}

label.is-required::after {
    content: "*";
    margin-left: 3px;
    color: red;
}

label {
    font-size: 12px;
    font-weight: 700;
    color: #b3b3b3;
    line-height: 20px;
}

#login-message {
    width: 100%;
    background-color: transparent;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

#login-message[data-type=normal] {
    opacity: 0;
}

#login-message[data-type=processing] {
    opacity: 1;
    color: darkblue;
}

#login-message[data-type=success] {
    opacity: 1;
    color: darkgreen;
}

#login-message[data-type=error] {
    opacity: 1;
    color: red;
}

a {
    font-size: 14px;
    color: #535353;
}

a:hover {
    color: #000;
}

a.disabled {
    pointer-events: none;
}

.submit {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 10px;
    margin: auto;
    padding-top: 20px;
}

.submit > div {
    margin-bottom: 0;
    margin-left: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.submit label {

}

.submit input[type=checkbox] {
    width: 20px;
    margin: 0;
}

.text-center{
    text-align: center;
}

.text-gray{
    color: #b3b3b3 !important;
}

#btn-register{
    text-decoration: none;
    color: #d49f51;
}

#btn-lost-password{
    text-decoration: none;
    color: #b3b3b3;
}