@import url('default.css');

/* =====================================================
   LOGIN CREDIHOME
===================================================== */

/* Centrar todo el contenido de la página de login */
body.login-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Título arriba del logo */
.login-container::before {
    content: "CrediHome - Portal de Soporte";
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Logo más pequeño y centrado */
.login-container img{
    max-width: 140px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

/* Caja de login centrada */
.widget-box{
    margin: 0 auto;
    max-width: 420px;
    border:none!important;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}