body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Blanco */
    color: #333;
}

header {
    background-color: #6a5fa1; /* Morado */
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

section {
    padding: 2em;
    background-color: #e9e3f0; /* Morado más claro */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2em;
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #6a5fa1; /* Morado */
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1em;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    background-color: #6a5fa1; /* Morado */
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

input[type="submit"]:hover {
    animation: buttonGlow 1.5s infinite;
}

@keyframes buttonGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(106, 95, 161, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(106, 95, 161, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(106, 95, 161, 0.7);
    }
}

.volver-boton {
    display: block;
    margin: 1em;
    text-align: center;
    color: #6a5fa1; /* Morado */
    text-decoration: none;
}

h1 {
    color: #6a5fa1; /* Morado */
    font-size: 16px;
    font-weight: normal;
    margin-top: 1em;
}

@media (max-width: 600px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    textarea {
        width: 100%;
    }
}
