﻿body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

.layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1600px;
    padding: 40px 20px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.login-container {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}

.info-usuario {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
}


.info {
    background-color: #e8f0fe; /* azul claro: suave, profesional y asociado a seguridad */
    border-left: 6px solid #1a73e8; /* azul más fuerte, para resaltar */
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
    color: #202124;
}

    .info h6 {
        margin-top: 0;
        color: #1a73e8; /* mismo azul que el borde */
    }

    .info h7 {
        font-weight:bold;
    }

    .info .detalle p {
        margin: 0;
        line-height: 1.5;
        text-align: justify;
    }


.info-usuario .info .detalle {
    overflow: hidden;
}

    .info-usuario .info .detalle .info-left {
        float: left;
        width: 320px;
        padding-right: 30px;
    }

.info-usuario .info .detalle .info-left .item {
    color: #00264b;
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 12px;
}

.info-usuario .info .detalle .info-left .item .time {
    float: left;
    width: 60px;
}

.info-usuario .info .detalle .info-left .item .det-time {
    float: right;
    width: 225px;
}

.recaptcha{
    display: flex;
    justify-content : center;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #1F4FA8 !important; /* Tu color */
    border-color: #1F4FA8 !important;
    filter: brightness(1.2); /* Opcional para un ligero efecto */
}


.site-header {
    background: #ffffff;
    border-bottom: 1px solid #dde3ec;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 100%;
    margin-bottom: 16px;
}

.header-inner {
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

    .header-brand img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

.logo-fallback {
    height: 40px;
    width: 40px;
    background: #1a56db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.brand-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a2b4a;
    line-height: 1.2;
    display: block;
}

.brand-subtitle {
    font-size: 11px;
    color: #6b7a99;
    font-weight: 400;
    display: block;
}

.footer{
    text-align:center;
    font-size:12px;
    color: #666;
    margin-top:30px;
}

@media (max-width: 768px) {
    .login-container {
        padding: 25px;
        font-size: 16px;
    }

    .info-usuario {
        padding: 20px;
        font-size: 15px;
    }

    .info {
        padding: 14px 16px;
    }

    .header-inner {
        padding: 0 16px;
        height: 56px;
    }

    .header-brand img {
        height: 32px;
    }
}