﻿html, body, #fullheight {
    min-height: 100% !important;
    height: 100%;
}

body {
    font-family: system-ui;
    background: #dde9f5;
}

form {
    height: 100%;
}

/*CONTENEDOR*/
#contenedor {
    width: 370px;
    min-height: calc(100% - 99px);
    margin: 0 auto;
    margin-bottom: 25px;
}

@media only screen and (max-width: 500px) {
    #contenedor {
        width: 90% !important;
    }
}

/*PANEL*/
#panel {
    /*box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;*/
    border-radius: 6px;    
    background-color: #fff;
    border: 1px solid #b9ccdf;
    padding: 20px;
}

    #panel .control {
        margin-bottom: 15px;
    }

/*TITLE*/
#title {
    text-align: center;
    padding: 1em 0em 1em 0em;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

    #title label {
        /*font-weight: 900;*/
        color: white;
        font-size: 40px;
        position: static;
        line-height: 43px;
        margin: 20px 0;
        color: #21519f;
    }

/*FOOTER*/
footer {
    text-align: center;
}

    footer p {
        color: #1d386e;
        font-size: 13px;
        letter-spacing: .4px;
    }

    footer a {
        color: #4a89dc;
        text-decoration: none;
        transition: all .2s ease;
    }

        footer a:hover {
            color: #666;
            text-decoration: underline;
        }

    footer img {
        transition: all .2s ease;
        width: 100px;
        filter: drop-shadow(1px 2px 2px #fff);
        margin-bottom: 5px;
    }

        footer img:hover {
            opacity: .83;
        }

        footer img:focus, footer a:focus {
            outline: none;
        }

/*LOGIN BUTTON*/
.blue-btn{
    color: white !important;
    border-radius: 5px;
    padding: 4px 15px 5px 15px;
    letter-spacing: 1px;

    background: #21519f; 
    border: 2px solid #21519f;
    color: white;
    transition: 0.3s;
}

.blue-btn:hover{
    background: transparent;
    transition: 0.3s;
    color: #21519f !important;
    border: 2px solid #21519f;
    text-decoration: none;
}

/*INPUT*/
.form-control:focus {
    border-color: #78a3e9 !important;
}