html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #001D6C;
}

body{
    background-color: transparent;
}

#submitlogin, #submitregister{
    margin-top: 15px;
    width: 100%;
    background-color: #01AEF0;
    border: 1px solid #01AEF0;
}

#container{
    border-radius: 30px;
    background-color: white;
}

#elemento-centrado{
    justify-content: center;
    align-items: center;
    display:flex;
    margin-top: 20px;
    outline: 0px !important;
}

#container {
    width: 500px; /* Ancho del formulario */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

a{
    text-decoration: none !important;
    color: rgba(33, 37, 41, 0.75);
}

.input-group-text{
    display: block;
    height: 38px;
}


/* ################################## RESPONSIVE #################################### */
@media only screen and (max-width: 600px) {
    #container {
        padding: 20px; /* Reducir el padding en dispositivos móviles */
        border-radius: 10px; /* Reducir el radio de borde en dispositivos móviles */
        width: 100%;
    }
}

.modal-dialog{
    width: 90% !important;
}

/* Media query para portátiles */
@media screen and (min-width: 768px) and (max-width: 1366px) {
    html {
        height: 100%; /* Quita el alto completo */
    }
}