html,
body {
    margin: 0;
    background-image: url(../img/header.jpg);
    background-position: 50% calc(50% + 0px);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Open Sans', sans-serif;
    color: #777;
    height: 100%;
}


/*= CONTAINERS
--------------------------------------------------------*/

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.modal {
    padding: 20px;
    /* border-top: 1px solid #8E1B92; */
    border-top: 1px solid #424242;
    -webkit-box-shadow: 0 0 6px 10px rgba(48, 48, 48, 0.75);
    -moz-box-shadow: 0 0 6px 10px rgba(48, 48, 48, 0.75);
    box-shadow: 0 0 6px 10px rgba(48, 48, 48, 0.75);
    /*-webkit-box-shadow: 0 0 3px 2px rgba( 155,54,156,0.75);
    -moz-box-shadow: 0 0 3px 2px rgba( 155,54,156,0.75);
    box-shadow: 0 0 3px 2px rgba( 155,54,156,0.75);*/
    background: rgba(24, 45, 50, 0.6);
    color: white;
    /*opacity: 0.6;*/
    border-radius: 5px;
    width: 27%;
    height: auto;
    align-items: center;
    transition: all .5s ease;
}

.flexCol {
    display: flex;
    flex-direction: column;
}

.fleCoW {
    display: flex;
    flex-direction: column;
}

.flotante {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#Alerta {
    margin: 10px;
    width: auto;
}

.logo {
    display: flex;
    height: 120px;
    min-width: 120px;
    width: auto;
    background: url(../img/logo.png) no-repeat center center;
    background-size: 120px;
}

.flex {
    display: flex;
    width: 100%;
}

.flexCen {
    display: flex;
    justify-content: center;
}

.martop {
    margin-top: 6%;
    width: 100%;
}

.flexEnd {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.Welcome label {
    color: #FFF;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
}

input[type=text],
input[type=password] {
    color: #FFF;
    background: transparent;
    font-size: 1em;
    line-height: 1;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 6px 5px 0;
    outline: none;
    border: none;
    border-bottom: 1px solid #FFF;
}


/* 
.container .input,.container input[type=text],.container input[type=password],.container input[type=e] {
    background: #fbfbfb;
    font-size: 24px;
    line-height: 1;
    width: 100%;
    padding: 3px;
    
    
    border: 1px solid #d9d9d9;
}*/


/*input ~ .focus-border{ bottom: 0; left: 0; width: 100%; height: 2px; z-index: 99;}
input ~ .focus-border:before, 
input ~ .focus-border:after{content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: #008A3A; transition: 0.4s;}
input ~ .focus-border:after{left: auto; right: 0;}
input:focus ~ .focus-border:before, 
input:focus ~ .focus-border:after{width: 50%; transition: 0.4s;}*/

input:focus {
    border-bottom: 1px solid #165886;
    /*    -webkit-box-shadow: 0 0 3px 2px rgba(0,158,58,0.75);
    -moz-box-shadow: 0 0 3px 2px rgba(0,158,58,0.75);
    box-shadow: 0 0 3px 2px rgba(0,158,58,0.75);*/
}


/*= BUTTONS
--------------------------------------------------------*/

.buttonA {
    background-color: #165886;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
}

.buttonA:hover {
    background: #165886;
    background: -webkit-gradient(linear, left top, left bottom, from(#165886), to(#164686));
    background: -moz-linear-gradient(top, #165886, #164686);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#165886', endColorstr='#164686');
}


/*= FOOTER
--------------------------------------------------------*/

footer {
    color: #777;
    font-size: 1vw;
    text-align: center;
    margin-top: 20px;
    bottom: 10px;
    right: 1%;
    position: fixed;
}


/*Alerta CSS*/


/*Loader circle*/

.loader {
    margin-left: 15px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

.loader.danger {
    border-top: 3px solid #f44336;
}

.loader.success {
    border-top: 3px solid #4CAF50;
}

.loader.info {
    border-top: 3px solid #2196F3;
}

.loader.warning {
    border-top: 3px solid #ff9800;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* FIN Loader circle*/

.alert {
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f0f0f0;
    color: black;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
}

.alert.danger {
    background-color: #f44336;
    color: white;
}

.alert.success {
    background-color: #4CAF50;
    color: white
}

.alert.info {
    background-color: #2196F3;
    color: white
}

.alert.warning {
    background-color: #ff9800;
    color: white
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    /*float: right;*/
    font-size: 1.8em;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

.card_name {
    color: #000;
}

.mensaje {
    display: flex;
}


/*FIN DE ALERTAS*/