﻿.body {
    color: #fff;
    font-family: normal normal normal 1em/1.45 Roboto,Arial,Helvetica,sans-serif;
    text-align: center;
    background: #f5f5f5;
    height: 100vh;
    width: 100vw;
    margin: 0;
}

.fondo {
    background:#f5f5f5;
    height: 100%;
    width: 100%;
    position: absolute; 
}   

.tituloPrincipal {
    background-image: url("../img/login_logo.png");
    background-repeat:no-repeat;
    background-size:cover;
    height: 77px;
    position: relative;
    text-align: center;
    width: 140px;
    top: 45px;
    margin: 0 auto;
    margin-bottom: 75px;
}

.tituloLogin {
    color: #00000033;
    font-size: 1.25rem;
    font-weight: 100;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    width: 100%;
}

.contentLogin {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    width: 90%;
    margin: 0 auto !important;
    margin-top: 5% !important;
}

.contentLogin .fila {
    height: 50px;
    margin: 5px auto;
    text-align: center;
    width: fit-content;
    width: 100%;
}

.contentLogin .fila input {
    background: transparent;
    border: 1px solid #ccc;
    letter-spacing: 1px;
    margin: 0 auto;
    /* text-transform: uppercase; */
    color: #ccc;
    font-family:normal normal normal 1em/1.45 Roboto,Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-weight: 300;
    width: -webkit-fill-available;
    width: -moz-available;
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    background-color: transparent;
    height: 40px;
    padding: 0 39px 0 19px;
    border-radius:3px;
}

.footer {
    height: 20px;
    padding: 6px 0 0;
    font-size: 1.083em;
    color: #fff;
    text-align: center;
    background: #c3a169;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.contentLogin .botonLogin {
    background: #c3a169;
	border-radius:3px;
    border: none;
}

.contentLogin .botonLogin:hover{
    background: #9d7f4f;
    color: #FFFFFF;
    border: none;
}

.contentLogin .fila input:focus {
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1) inset, 0 2px 7px 0 rgba(0, 0, 0, 0.2);
    outline: medium none;
}

.contentLogin .botonLogin {
    font-size: 18px;
    height: 37px;
    line-height: inherit;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0;
    color:#fff;
    font-weight: 100;
    cursor: pointer;
}

.labelError {
    color: #ff0000;
    /* float: left; */
    /* font-size: 13px; */
    font-weight: 300;
    margin-top: 10px;
    width: 100%;
}

.login {
    background: transparent;
}

.login a {
    color: #9d7f4f !important;
    text-decoration: none;
    cursor: pointer;
	font-weight:300;
	font-size: 12px;
}

#formLogin {
    margin: 0 auto;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #formLogin {
        width: 100%;
    }
    .contentLogin .botonLogin {
        width: 80%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #formLogin {
        width: 80%;
    }
    .contentLogin .botonLogin {
        width: 70%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #formLogin {
        width: 60%;
    }
    .contentLogin .botonLogin {
        width: 50%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #formLogin {
        width: 40%;
    }
    .contentLogin .botonLogin {
        width: 60%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    #formLogin {
        width: 30%;
    }
}