﻿.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 95vh;
    background-color: #e9ecef;
    /* Fondo + logo */
    background-image: url('/contenido/logo/logo_transparencia_01.png'), url('/contenido/background/back_sistema_desktop.webp');
    background-repeat: no-repeat, no-repeat;
    background-position: center top 100px, center;
    background-size: 450px auto, cover;
    position: relative; /* necesario para posicionar el texto */
}

/* Título FEASY sobre el fondo */
.feasy-titulo {
    position: absolute;
    top: 160px; /* ajusta este valor para moverlo verticalmente */
    color: white;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: 'Segoe UI', sans-serif;
}

/* --- Fondo para móviles --- */
@media (max-width: 576px) {
    .login-page {
        background-image: url('/contenido/logo/logo_transparencia_01.png'), url('/contenido/background/back_sistema_mobile.jpg');
        background-size: 300px auto, cover;
    }

    .feasy-titulo {
        top: 130px;
        font-size: 36px;
    }
}

/* --- Fondo para tablets --- */
@media (min-width: 577px) and (max-width: 992px) {
    .login-page {
        background-image: url('/contenido/logo/logo_transparencia_01.png'), url('/contenido/background/back_sistema_tablet.jpg');
    }

    .feasy-titulo {
        top: 150px;
        font-size: 42px;
    }
}

.card {
    border-radius: 10px;
    border: none;
}

.boton-login {
    padding: 12px !important;
}

.titulo-login {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #555555 !important;
}

.logo-login {
    width: 350px;
    padding: 20px;
}

.card-header {
    padding: 0px !important;
    background-color: #1C4385;
}

.login-label {
    font-size: 14px;
}

    .login-label i {
        color: var(--coloricon) !important;
        margin-right: 1px !important;
    }

.password-container {
    position: relative;
}

    .password-container input[type="password"],
    .password-container input[type="text"] {
        width: 100%;
        box-sizing: border-box;
    }

.fa-eye {
    position: absolute;
    top: 28%;
    right: 4%;
    cursor: pointer;
    color: var(--coloricon) !important;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
    font-size: 12px;
}

.form-control {
    font-size: 12px !important;
}

.footer-contenido {
    height: 5vh;
    background-color: #151B24;
    margin-bottom: 0px;
    padding: 10px;
}

    .footer-contenido span {
        font-size: 13px;
        color: white;
    }

.g-recaptcha {
    display: inline-block;
}
