

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('/images/fond.jpg') center center fixed;
    background-size: cover;
    box-sizing: border-box;
    align-items: center;
    overflow-x: hidden;
}

.card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 10px 15px;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #2a5298;
    box-shadow: 0 0 8px rgba(42, 82, 152, 0.4);
}

.btn {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    .form-control {
        font-size: 0.9rem;
    }
}


/***************************************************************************************/

/********************************FOOTER*********************************************** */
.footer {
    background-color: rgba(60, 60, 60, 0.7);
    color: white;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px; /* Espacio interno a los lados del footer */
    }
    
    .logo-container {
    margin-left: 200px; /* Empuja el logo hacia la derecha */
    }
    
    .logo-container img {
    max-width: 150px;
    height: auto;
    }
    
    .footer-content {
    flex: 1;
    text-align: center;
    }
    
    .social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    }
    
    .social-links a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
    }
    
    .social-links a:hover img {
    transform: scale(1.1);
    }
    
    footer p {
    margin: 5px 0;
    }
    
    @media (max-width: 768px) {
    .footer-container {
    flex-direction: column;
    align-items: center;
    }
    
    .footer-content {
    text-align: center;
    }
    
    .social-links a img {
    width: 25px;
    height: 25px;
    }
    
    .logo-container {
    margin-left: 0; 
    }
    }
    
.card p {
    margin: 5px 0;
    text-align: center; /* Centra el texto */
    font-family: 'Arial', sans-serif; /* Cambia la familia de fuente */
    font-size: 11px; /* Ajusta el tamaño de la fuente */
    font-weight: 400; /* Peso de la fuente */
    line-height: 1.6; /* Altura de la línea para mejor legibilidad */
    letter-spacing: 0.5px; /* Espaciado entre letras */
    color: #000000; /* Color del texto */
}
    