/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 11 2025 | 04:24:07 */
/* Añade aquí tu código CSS.

Por ejemplo:
.ejemplo {
    color: red;
}

Para mejorar tu conocimiento sobre CSS, echa un vistazo a https://www.w3schools.com/css/css_syntax.asp

Fin del comentario */ 
/* Mostrar solo el estado correspondiente */
.um-loggedin,
.um-not-loggedin {
    display: none;
}

.um.um-login.loggedin .um-loggedin {
    display: block;
}

.um.um-login:not(.loggedin) .um-not-loggedin {
    display: block;
}

/* Estilo para el estado logueado */
.um-loggedin .um-misc-with-img {
    text-align: center;
    margin-bottom: 20px;
}

.um-loggedin .um-misc-img {
    margin: 0 auto 10px;
}

.um-loggedin .um-misc-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.um-loggedin .um-misc-ul li {
    margin-bottom: 10px;
}

.um-loggedin .um-misc-ul li a {
    display: block;
    padding: 10px;
    background: #f0f9ff;
    color: #0C4A6E;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.um-loggedin .um-misc-ul li a:hover {
    background: #d0e9ff;
}
/* Contenedor principal */
.um-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
    background: transparent !important;
}

/* Caja del formulario */
.um-form {
    background: #E0F2FE;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Campos del formulario */
.um-field {
    margin-bottom: 15px;
    text-align: left;
}

.um-field-label label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.um-form-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    box-sizing: border-box;
    background: #fff;
}

/* Botones */
.um-button {
    background-color: #3993FF !important;
    color: white !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 5px !important;
    cursor: pointer;
    font-size: 16px !important;
    transition: background-color 0.3s !important;
    width: 100%;
    margin: 5px 0 !important;
}

.um-button:hover {
    background-color: #005a87 !important;
}

.um-alt {
    background-color: transparent !important;
    color: #0C4A6E !important;
    border: 1px solid #0C4A6E !important;
}

.um-alt:hover {
    background-color: #f0f9ff !important;
}

/* Enlaces */
.um-link-alt {
    color: #0C4A6E !important;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.um-link-alt:hover {
    text-decoration: underline;
}

/* Mensajes */
.um-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
}

.um-message.err {
    background-color: #ffebee;
    color: #c62828;
}

/* Ajustes para el tooltip */
.um-tip i {
    color: #0C4A6E;
}

/* Responsive */
@media (max-width: 480px) {
    .um-form {
        padding: 20px;
    }
    
    .um-col-alt > div {
        width: 100% !important;
        float: none !important;
        margin-bottom: 10px;
    }
}