﻿/*COLORES 
    Azul Fuerte -->  #2A3584
    Azul Claro  -->  #3F51B5
    Fuxia  -->  #FE4180
    Gris  -->  #A9AAAA
    Gris Fondo  -->  #F5F5F5
        
    Verde agua -->  #00816d
    Azul Claro  -->  #48C3AF
    Naranja  -->  #F8931F
    Gris  -->  #A9AAAA
    Gris Fondo  -->  #F5F5F5
    Gris Oscuro  -->  #333
*/
html {
    font-size: 100% !important;
    font-family: 'Open Sans', sans-serif !important;
}
body {    
    font-size: 100% !important;
    font-family: 'Open Sans', sans-serif !important;
    margin: 0;
    background: url(/images/fondologin3_5.jpg) repeat center fixed #00816d;
    /*background-blend-mode: multiply;*/
}
.login {
    margin: 20vh auto 0 auto;
    width: 350px;
    box-shadow: 0px 0px 20px 7px #000;
    border-radius: 3px;
}
.login-screen {
    background-color: #FFF;
    padding: 20px;
    border-radius: 5px
}
.login .reccont{
    font-size: 0.8em;
    color: #747474;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
}
.login .reccont:hover,
.login .reccont:focus,
.login .reccont:active {
    color: #00816d;
}
.app-img{
    margin: 0 auto 30px auto;
    text-align: center;
    width:100%;
}

    .app-img img {
        vertical-align: middle; 
        width:inherit;
        width:100px;
    }


.app-title {
    text-align: center;
    color: #777;    
    padding: 5px 0;
}
    .app-title span {
        font-size: 2em;
    }
.login-form {
    text-align: center;
}
.control-group {
    margin-bottom: 10px;
}

input[type=text], input[type=password] {
    text-align: center;
    background-color: #ECF0F1;
    border: 2px solid #ECF0F1;
    border-radius: 3px;
    font-size: 1em;
    font-weight: 200;
    padding: 10px 0;
    width: 250px;
    transition: border .5s;
}

input[type=text]:focus, input[type=password]:focus {
    border: 2px solid #00816d;
    outline:none !important;
}

.btn {
    background: #00816d;
    color: #ffffff;
    font-size: 1em;
    line-height: 25px;
    padding: 10px 0;
    text-decoration: none;
    text-shadow: none;
    border-radius: 3px;
    box-shadow: none;
    transition: 0.25s;
    display: block;
    width: 250px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing:1px;
    border:none;
}
.btn:hover {
    background: #333;
}
.diverror{
	line-height:30px; 
	display:none;
    margin: 10px 5px;
    background-color: #ffe2e2;
    color: #00816d;
    border-radius: 5px;
}
.diverror span{
	color: #FF0000;
}
.pie {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    background-color: #333;
}
.pie span{
	color: #FFFFFF;
	font-size: 1em;
	text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.8), 0 0 0.5em rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {    
    .login{
        margin: 10vh auto 0 auto;
    }
}
@media (max-width: 375px) {
    body {
        font-size: 80%;
        /*min-width:350px;*/
    }
    .login{
        width:300px;
    }
}