#contact {
    position: relative;
    overflow: hidden;
    background-image: url("img/contact_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-container {
    width: 60%;
    padding: 20px;
    margin-top: 20px;

    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    box-shadow: 0 4px 30px #000;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid #3D2572;
}

#contact::before,
#contact::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px; /* Ajusta la altura del degradado */
    pointer-events: none; /* No bloquea interacciones */
}

/* Degradado superior */
#contact::before {
    top: 0;
    background: linear-gradient(to bottom, black, transparent);
}

/* Degradado inferior */
#contact::after {
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
}

label {
    width: 100%;
    background-color: #1C0C40;
    border: 1px solid #3D2572;
    border-radius: 20px;
    font-size: 16px;
    padding: 10px;
}

input, textarea{
    width: 100%;
    font-size: 1rem;
    padding: 10px;
    background-color: #9C8AC4;
    border: 2px solid #D9D2E9;
    border-radius: 5px;
    outline-color: #3D2572;
    resize: vertical;
}

input:hover, textarea:hover {
    background-color: #D9D2E9;
}