main{
    height:100dvh;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

figure img{
    width:100%;
}
.logo_site{
    position:absolute;
    top:30px;
    left:30px;
    width:50px;
    display:flex;
}
section{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.content_form{
    position:relative;
}
.content_form form a{
    display:flex;
}
.content_form form a input{
    width:100%;
}
.dots{
    position:absolute;
    top:-35px;
    display:flex;
    gap:5px;
}
.dots li{
    width:15px;
    height:15px;
    border-radius:20px;
}
.dots li:nth-child(1){background:#096ACE}
.dots li:nth-child(2){background:#188FE7}
.dots li:nth-child(3){background:#FFD73D}
h2{
    font-family:"Poppins";
    font-size:20px;
    font-weight:500;
    letter-spacing:-0.8px;
    color:#4d4a4a;
}
.content_form form{
    display:flex;
    flex-direction:column;
    gap:15px;
    padding:1em;
    width:300px;
    border-radius:5px;
    background:#fff;
}
input[type="email"],
input[type="password"]{
    background:#F0F0F0!important;
    border:0;
    font-size:15px;
    text-transform:none;
}
.btn_ingresar{
    background:#266cd8!important;
    height:45px;
    border:0;
    border-radius:5px;
    color:#fff;
    font-size:16px;
}

.sign{
    position:fixed;
    bottom:20px;
    left:20px;
    font-family:monospace;
}

.banner {
    width: 100%;
    height: 100%; /* Ajusta según lo necesites */
    overflow: hidden;
    position: relative;
    background:#fff;
}

.picture {
    width: 50%;
    height:80%;
    max-height:550px;
    position: relative;
}

.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius:10px;
}

.picture img.active {
    opacity: 1;
}



@media (max-width: 800px) {
    .banner {
        display: none;
    }
}

.alert__danger_message{
    border:2px solid #ea8181;
    max-width:300px;
    margin-top:10px;
    border-radius:5px;
    padding:0.5em;
    color:#474040;
    background:#e3c2c2;
    font-size:13px;
    letter-spacing:0.5px;
    
}
