@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&family=Playfair+Display:ital,wght@1,700&display=swap');

body {
    background-color: #FFFFFF;
    color: #414141;
    font-family: 'Inter', sans-serif;
    background-image: radial-gradient(#f3f4f6 1px, transparent 1px);
    background-size: 20px 20px;
}

.blue-text { color: #0077b6; }

/* Estilo del botón principal heredado del diseño original */
.main-cta {
    background-color: #0077b6;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.25);
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.main-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 12px 25px rgba(0, 119, 182, 0.35);
}

.font-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Estilos personalizados para los inputs del formulario */
.custom-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background-color: #f9fafb;
    color: #1f2937;
    transition: all 0.2s;
    font-size: 1rem;
}

.custom-input:focus {
    outline: none;
    border-color: #0077b6;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    transition: color 0.2s;
}

.custom-input:focus + .input-icon, 
.group-focus-within .input-icon {
    color: #0077b6;
}

/* Animación para el mensaje de éxito */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.success-message {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}