
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('../../fondologin.png');
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont-general {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.cont-1, .cont-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 300px; 
}

#imgtipo{
    width: 60%;
}

.cont-2 {
    background-color: rgba(162, 224, 153, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.close{
 background-color: rgb(71, 158, 39);
 border: none;
}


/*form contenedores*/

/*contenedor genera*/
#login_form{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/*titulo*/
.t-u{
    margin-top: 5%;
    font-size: 1.6em;

}


.form-group{
    width: 100%;
    height: auto;
    margin-top: 5%;
}


.usu_correo{
    width: 100%;
    height: 20%;
    margin: 20px;
    background-color: aqua;
    
}

.form-control{
    width: 70%;
    height: 80%;
    border: none;
    border-radius: 20px;
    text-align: center;
}

.float-right{
    margin-top: 3%;  
   
}
.float-left{
    margin-top: 3%;
 
}
.btn-rounded1 {
    margin-top: 3%;
    width: 30%;
    padding: 1%;
    border-radius: 20px;
    color: rgb(255, 255, 255);
    font-size: 1em;
    background-color: rgb(27, 180, 21);
    border: 1px solid white; /* Corrige el borde para que se vea */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
}

.btn-rounded1:hover {
    background-color: rgb(39, 158, 32); /* Color de fondo en hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra al pasar el mouse */
    cursor: pointer; /* Cambia el cursor al pasar el mouse */
}


@keyframes saltar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.sveltia-bot {
    display: flex;
    justify-content: center;
    align-items: center;
   
    animation: saltar 0.7s ease infinite;
}

form {
    width: 50%;
   
    text-align: center;
}

/* Estilos responsivos para pantallas pequeñas */
@media (max-width: 768px) {
    .cont-general {
        flex-direction: column; /* Apila los contenedores en dispositivos pequeños */
    }

    .cont-1, .cont-2 {
        width: 100%; /* Asegura que ambos contenedores ocupen el 100% de la pantalla */
        min-width: unset; /* Quita el min-width en pantallas pequeñas */
    }

    form {
        width: 80%; /* Ajusta el ancho del formulario para pantallas pequeñas */
    }
}



