.login-box {
    max-width: 300px;
    margin: 15px auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.login-box h3 {
    text-align: center;
    margin-top: 0;
}

#login-custom-form p {
    margin-bottom: 10px;
}

#login-custom-form input[type="text"], 
#login-custom-form input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.login-submit{
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    
}

.login-submit input {
    background-color: #ffffff;
    color: black;
    border: 10px;
    padding: 10px;
    cursor: pointer;
    
}

/* Esto obligará al botón a usar TU color y no el del sistema */
.login-submit input:hover {
    background-color: #50a0a2; /* El !important asegura que tu color gane */
    transition: 0.2s; /* Para que el cambio sea suave */
    
}

.login-options {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
}