
/**
 * ===================================================
 * © 2025 YUYAY Ltda. - yuyay.fin.ec
 * Sistema: Pagína Web
 * Versión: 2.5
 * Desarrollador: [Leonardo Verdugo Crespo - Sistemas]
 * Última modificación: 24/06/2024
 * ===================================================
 */
body {
    background: url('../../../assets/images/Contactanos/Fondo.jpg') no-repeat center center/cover; /* Fondo azul */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}


.formulario{
    width: 40%;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: rgb(255, 255, 255);
    position: static;
    margin-left: 800px;
    
}



form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* Capa de fondo semi-transparente para mejor legibilidad */
    padding: 20px;
    border-radius: 10px;
}

label {
    font-size: 28px;
    font-weight: 600;
    margin-top: 20px;
}

input, textarea {
    width: 80%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #0056b3;
    color: white;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    padding: 10px 20px;
}

input[type="submit"]:hover {
    background-color: #003f7f;
}

/* Tarjeta de la izquierda*/
.tarjeta-izquierda {
    position: absolute;
    top: 53%;
    left: 15%;
    transform: translateY(-50%);
    width: 20%;
    height: 50vh;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenido-tarjeta {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: acercamiento 4s infinite ease-in-out;
}

.imagen-cuerpo {
    flex-grow: 1;
    overflow: hidden;
}

.imagen-cuerpo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.texto-pie {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    padding: 15px;
    text-align: center;
    background-color: #fff;
}








