﻿body {
    background: white;
    color: #888;
    font-family: 'Ubuntu Mono', sans-serif;
}

.box {
    width: 90%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    margin-top: 100px;
    background: white;
    border-radius: 20px 20px 7px 7px;
    box-shadow: 3px 4px 20px 1px gainsboro;
}

.error {
    color: red;
}

.error-container {
    width: 75%;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid darkred;
    border-radius: 5px;
    color: darkred;
    background-color: #ff000012;
}

    .error-container > .icon-attention-alt {
        color: red;
    }

.icon-user-container {
    margin: 5%;
}

.icon-user-o {
    font-size: 6em;
}

.login-logo-container {
    background: #3B3F45;
    height: 3em;
    border-radius: 20px 20px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
}

.login-img {
    width: 25%;
    margin: 10% auto;
    border-radius: 20px;
}

.login-version {
    display: flex;
    padding: 5% 15%;
    font-size: 0.8em;
}

.content {
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content2 {
    text-align: center;
}

.required-field {
    font-size: 0.9em;
    width: 75%;
    display: flex;
    justify-content: flex-end;
    color: #DB0028;
}

#restablecerTexto {
    width: 90%;
    max-width: 430px;
    height: auto;
    margin: 0 auto;
    margin-top: 10px;
    background: #F2F2F2;
    border-radius: 7px;
    box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.9);
    padding-top: 15px;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.content h1 {
    font-size: 24px;
    font-weight: 400;
    color: black;
    text-align: center;
    margin-top: 10%;
    margin-bottom: 5%;
}

.content span {
    width: 70%;
    text-align: left;
}

.field {
    width: 70%;
    padding: 10px;
    background: #EDEEF3;
    border: none;
    border-radius: 5px;
    outline: none;
}


::-webkit-input-placeholder { /* WebKit browsers */
    color: #5A5A5A;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #5A5A5A;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #5A5A5A;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #5A5A5A;
}


.recordar {
    margin: 5px auto;
    color: grey;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    font-size: 0.8em;
    width: 75%;
}

    .recordar:hover {
        color: #DB0028;
    }

.btn {
    width: 75%;
    padding: 10px;
    background: #DB0028;
    border: none;
    border-radius: 5px;
    outline: none;
    color: white;
    font-weight: 700;
    letter-spacing: 0.125em;
    text-align: center;
    text-transform: uppercase;
}

    .btn:hover {
        background: #3B3F45;
        color: white
    }

    .btn:active {
        background: #3B3F45;
        color: white;
    }
