﻿@import url('https://fonts.googleapis.com/css?family=Rubik');
* {
    box-sizing: content-box;
    margin: 0;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Rubik', sans-serif !important;
    background-image: url('../../../../Imagenes/textura.png');
    background-size: 220px;
}

.content {
    opacity:1;
    width: 750px;
    height: 600px;
    
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(184,184,184,0.5);
    -moz-box-shadow: 0px 0px 15px 0px rgba(184,184,184,0.5);
    box-shadow: 0px 0px 15px 0px rgba(184,184,184,0.5);
    display: flex;
    justify-content:center;
}

    .content .logo {
        background-color: #00126b;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .logo .img-logo{
            width:90%;
            opacity:1
        }

.content .formLogin {
    width: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
    /*background-image: url('../../../../Imagenes/logo3_1.png');*/
    background-size: 375px 300px;
    background-repeat: no-repeat;
    font-size: 14px !important;
}

        .formLogin form{
            padding-top:150px;
            height:auto;
            width:90%;
        }

h3 {
    margin-bottom: 30px;
    margin-top: -40px;
    color: #00126b;
}

        .input-group-text{
            font-size:1.3em !important;
            padding-left:0.7em !important;
            padding-right:0.7em !important;
        }

.btn-success {
    margin-top: 20px;
    width: 90%;
    background-color: #00126b;
    border: 1px solid #00126b;
}

    .btn-success:hover {
        background-color: #357DBA;
        border: 1px solid #00126b;
    }

#password {
    box-sizing: border-box !important;
    height: 100%;
    width: 292px;
    font-size: 14px;
}

.btn-eye{
    position:relative;
}

@media only screen and (max-width: 600px) {
    .content .logo {
        display: none;
    }
}

@media only screen and (max-width: 1290px) {
    body {
        background-size: 1298px 721px;
        background-position: center;
    }
}