html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    position: relative;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

.background-image {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 33.33%;
    height: 500px;
    background-image: url('jordan_contacto_izq_500.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 1; /* Aumentamos el z-index */
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2; /* Aseguramos que esté por encima de la imagen de fondo */
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 20px;
    max-width: 300px;
    background-color: rgba(249, 249, 249, 0.9); /* Añadimos un poco de transparencia */
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    max-height: 66px;
    width: auto;
    margin-bottom: 20px;
}

.text-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

p {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.credentials {
   text-decoration: underline; /* Subrayar el texto */
   text-decoration-color: rgba(255, 255, 0, 0.8); /* Color amarillo tenue */
   text-decoration-thickness: 4px; /* Grosor de la línea */
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-top: 20px;
}

.btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .background-image {
        width: 50%;
        height: 200px;
    }

    .column {
        margin: 20px 0;
        width: 80%;
    }
}
