html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/*----------------------------------------Estilos Generales----------------------------------------*/
.navbar-banner {
    position: relative;
    background: url('/images/navbar.png') center / cover no-repeat;
}

.btn-primary {
    background-color: #0d3c61; /* azul medio oscuro */
    border-color: #0a2e4a;
    color: white;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: #15477d; /* versión más clara */
        border-color: #123a68;
        color: #fff;
    }

.zoom-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .zoom-hover:hover {
        transform: scale(1.05);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    }

.cursor-default {
    cursor: default;
}

/*-------------------------------------Importacion Datos Arca--------------------------------------*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/*----------------------------------------Mensaje Toast----------------------------------------*/
/*----------------------------------------Mensaje Toast----------------------------------------*/
/*----------------------------------------Mensaje Toast----------------------------------------*/
/*----------------------------------------Mensaje Toast----------------------------------------*/
/*----------------------------------------Mensaje Toast----------------------------------------*/


/* Fondo del login */
.login-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Logo */
.login-logo {
    position: fixed;
    top: 30px;
    left: 100px;
    width: 170px;
    height: auto;
    z-index: 10;
}

/* Card */
.login-card {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px; /* más ancho */
}

.html, .body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}


.identity-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 420px;
}
