﻿html {
    font-size: 15px;
}

body {
    font-family: 'Open Sans', sans-serif;
}

/*-----------------------------------------
            AREA LOGIN
-----------------------------------------*/
.area-login {
    height: 100vh;
    min-height: 37rem;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    background: url('../images/FONDOIDEILOGIN.jpg')no-repeat center center;
    background-size: cover;
}

    .area-login .logo {
        width: 12rem;
    }

    .area-login a {
        margin-top: 1rem;
        color: #333333;
        font-size: .9rem;
        width: 21rem;
        text-decoration: underline;
    }

        .area-login a span {
            font-family: FontAwesome;
        }

.login {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 18rem;
    max-width: 22rem;
    border: 1px solid #E5E5E5;
    -webkit-box-shadow: 10px 10px 26px -4px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 26px -4px rgba(0,0,0,0.75);
    border-radius: 5px;
    height: 27rem;
    background: white;
}

    .login h3 {
        font-size: 1.4rem;
        margin-top: .9rem;
        background: #3F3E3D;
        width: 100%;
        height: 3rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: white;
    }

    .login img {
        width: 7rem;
        margin: 1rem 0;
    }

.input-group span {
    font-family: FontAwesome;
    width: 3rem;
}

.input-group {
    padding: .3rem;
    width: 90%;
}

.login #btnAceptar {
    margin-top: 1rem;
    width: 60%;
}

.login a {
    margin-top: .5rem;
    text-align: center;
    font-size: .85rem;
    cursor: pointer;
    color: #027DD6;
}

    .login a:focus {
        outline: none;
    }

.login p:hover {
    text-decoration: underline;
}