/* Estilos para la versión azul */
.navbar.main-header {
    background-color: #2a6fb0 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-section .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
}

.info-section .info-text {
    font-weight: 500;
}

.info-section .badge {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
}

.info-section .user-info:hover,
.info-section .yard-info:hover,
.info-section .company-info:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* Fondo general */
.custom-background {
    min-height: 100vh;
    background-color: #2a6fb0;
    color: white;
    font-family: "Biome W01 Light", sans-serif;
}

/* Contenedor superior */
.custom-header {
    padding: 20px;
}

/* Logo */
.custom-logo {
    width: 100px;
    height: auto;
    margin-right: 15px;
}

/* Títulos */
.custom-title {
    font-size: 2.5rem;
    margin: 0;
}

.custom-subtitle {
    font-size: 1.5rem;
    margin: 0;
}

/* Slogan */
.slogan {
    font-size: 2.2rem;
    font-style: italic;
}

/* Contenedor del formulario */
.custom-form-container {
    flex-grow: 1;
    margin-top: 5rem;
}

/* Estilo del formulario */
.custom-card {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    background-color: white;
    color: #333;
}

.custom-form-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}


/* Inputs */
.custom-input {
    padding-left: 40px; /* Deja espacio para el ícono */
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.custom-input:focus {
    border-color: #2a6fb0;
    box-shadow: 0 0 3px #2a6fb0;
}

.custom-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #888;
}

/* Botón */
.custom-button {
    width: 100%;
    background-color: #2a6fb0;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.custom-button:hover {
    background-color: #245a91;
}

/* Banderas */
.custom-flag {
    width: 30px;
    margin: 0 10px;
    cursor: pointer;
}


/* Responsivo */
@media (max-width: 768px) {
    .custom-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .slogan {
        font-size: 1rem;
    }
}
