﻿body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    margin: 0;
    padding: 0;
}

.login-container {
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px; 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    text-align: center;
}

.login-header {
    background-color: #113050;
    color: #ffffff;
    padding: 20px 0;
    font-size: 1.5em;
    margin-bottom: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    .login-header .header-content {
        display: flex; /* Para poner el icono y el texto en la misma línea */
        align-items: center; /* Centrar verticalmente */
        justify-content: center; /* Centrar horizontalmente el grupo icono+titulo */
        /* margin-bottom: 5px; */ /* Ya no es necesario si el tagline está inline */
        padding: 0;
    }

    /* Estilos para el icono del bus */
    .login-header .login-icon {
        width: 60px; /* Tamaño del icono */
        height: 60px;
        margin-right: 15px; /* Espacio entre el icono y el texto */
        vertical-align: middle;
        display: block;
        border: none;
        padding: 0;
        background-color: transparent;
        object-fit: contain;
    }

    /* Estilos para el título principal "Ms Vargo" */
    .login-header h1 {
        font-size: 28px; /* Tamaño de fuente para "Ms Vargo" */
        margin: 0;
        padding: 0;
        color: #ffffff;
        font-weight: bold;
        line-height: 1.2;
        display: flex; /* Permite que los elementos dentro de h1 (Ms Vargo y span) estén en línea */
        align-items: center; /* Centra verticalmente si hay diferencia de altura */
        flex-wrap: nowrap; /* Evita que el texto salte de línea si hay espacio */
    }
    .login-header h2 {
        font-size: 18px; /* Tamaño de fuente para "Ms Vargo" */
        margin: 0;
        padding: 0;
        color: #e27e28;
        font-weight: bold;
        line-height: 1.2;
        display: flex; /* Permite que los elementos dentro de h1 (Ms Vargo y span) estén en línea */
        align-items: center; /* Centra verticalmente si hay diferencia de altura */
        flex-wrap: nowrap; /* Evita que el texto salte de línea si hay espacio */
    }
    /* Estilos para el subtítulo "Transporte Empresarial" */
        .login-header h1 .tagline-inline {
            font-size: 0.7em; /* Relativo al tamaño del h1 (28px * 0.7 = 19.6px aprox) */
            font-weight: normal; /* Menos negrita que "Ms Vargo" */
            color: #113050;
            opacity: 0.85;
            margin-left: 8px; /* Espacio entre "Ms Vargo" y "Transporte Empresarial" */
            white-space: nowrap; /* Evita que se rompa de línea */
        }

.login-form-box {
    padding: 0 30px 15px 30px; 
}

    .login-form-box h2 {
        color: #333;
        margin-bottom: 25px;
        font-size: 1.8em;
    }

.form-group {
    margin-bottom: 15px;
    text-align: left; 
}

    .form-group label {
        display: block; 
        margin-bottom: 5px;
        color: #555;
        font-weight: bold;
    }

.form-control {
    width: calc(100% - 20px); 
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; 
    margin-bottom: 10px; 
}

.button-group {
    margin-top: 25px;
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 15px;
}

    .button-group .btn {
        flex: 1; 
        padding: 12px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.1em;
    }

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
}

    .btn-secondary:hover {
        background-color: #5a6268;
    }

.login-footer {
    background-color: #113050;
    color: #ffffff;
    font-size: 0.9em;
}

    .login-footer p {
        margin: 5px 0;
    }
@media (max-width: 600px) {
    .login-container {
        margin: 20px;
    }

    .login-form-box {
        padding: 0 20px 20px 20px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }
}
.marketing-box {
    background-color: #e27e28; 
    color: white;
    text-align: center; 
}

.marketing-headline {
    font-size: 1em;
    font-weight: bold; 
    color: #113050; 
    margin-bottom: 3px; 
    line-height: 1.2; 
}

.marketing-call-to-action {
    font-size: 0.85em; 
    color: #113050;
    margin-bottom: 8px;
    line-height: 1.2; 
}

.marketing-contact-info {
    font-size: 0.9em;
    color: white;
    line-height: 1.2; 
    margin-bottom: 0; 
}

    .marketing-contact-info strong {
        font-weight: bold; 
    }

    .marketing-contact-info a {
        color: #113050; 
        text-decoration: none; 
        font-weight: normal; 
    }

        .marketing-contact-info a:hover {
            text-decoration: underline; 
        }
@media (max-width: 576px) {
    .marketing-box {
        margin-top: 20px;
        padding: 10px;
    }

    .marketing-headline {
        font-size: 1em;
    }

    .marketing-call-to-action {
        font-size: 0.9em;
    }

    .marketing-contact-info {
        font-size: 0.95em;
    }
}
