*{
    margin: 0;
    padding: 0;
}
body,html{
    position: relative;
    width: 100%;
    height: 100%;
    background: #092a49;
    
}
header{
    background-color: #092a49;
}

.logo{
    text-align: right;
}
.logo img{
    background: white;
}

.contenido{ 
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/login-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenido::after{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(9 42 73 / 27%);
    z-index: 1;
}


.card{
    width: 380px;
    /*height: 320px;*/
    position: absolute;
    box-shadow: 0px 0px 15px black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  
    
}
.boton{
    text-align: center;
}

.boton-login{
    color:white;
    background-color: rgb(255 152 0 / 80%);
    border: 2px #fe9a04 solid;
}

.boton-login:hover{
    background-color: #092a49c7;
    color: rgb(255 152 0 / 80%);
    /* font-weight: 700; */
    border: 2px solid #092a49;
}
.card-title{
    text-align: center;
    color: rgb(9 42 73);
    font-size: 1.6rem;
}


.form-control{
    border: 1.5px solid #092a49;
}
.form-label{
    color: #092a49;
    font-size: 1.2rem;
}

@media (max-width: 425px){
    .card{
        width: 90%;
    }
}


.footer-container{
    width: 100%;
    position: relative;
    background:#092a49;
    padding-top: 45px;
    padding-bottom: 40px;
}

.footer-text{
    text-align: center;
    color: white;
}


.card-aviso{
    background:#092a49;
}

.card-header{
    background:rgb(203, 203, 203);
    color:#092a49;
}
.card-body-aviso{
    color:white
}
.aviso{
    display: block;
}

.a-contenido{
    display:flex;
    align-items: center;
}
.a-contenido h4{
    margin-bottom: 0;
    margin-left: 10px;
}