body {
    min-height: 100svh;

    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../assets/imagenes/fondomapa.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 20px; 
    overflow-x: hidden;

}

/* CONTENEDOR */
.total-container{
    display: flex;
    flex-direction: column;
    gap: 0;

    width: 100%;
    max-width: 800px;

    border: 1.5px solid white;
    border-radius: 20px;
    overflow: hidden;
}


/* SUBTÍTULO */
.section-subtitle  {
    display: flex;
    justify-content: center;
    color: #4A69BD;
    font-size: 14px;
    margin-top: 0px;   
    margin-bottom: 12px;
}

.section-subtitle h2 {
    margin: 0; 
}


/* LOGIN */
.login-container {
    background: #F5F5F5;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* FORMULARIO */
label {
    display: block;
    margin-top: 12px;
    color: #333;
    font-size: 15px;
}


button:hover {
    background: #000;
}

/* REGISTRO */
.contenedor-registro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
}

.registro{
    cursor: pointer;
    color: #4A69BD;
    text-decoration: underline;
}

.registro:hover{
    color :#113bac
}



@media (max-width: 460px) {

    body {
        align-items: flex-start;
        padding: 20px 12px; 
    }

    .total-container {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        min-height: 85svh; 
        display: flex;
        justify-content: center;
    }
    
    .login-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 20px 15px;
    }  


    input {
        padding: 14px;
        font-size: 16px;
    }

    button {
        font-size: 15px;
    }


}