body{
    background: url("../images/bg-services.png") no-repeat fixed center;
    background-size: cover;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color:rgba(255, 255, 255, 0.788);
    border-width: 0px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.295); /* Sombra inferior */
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    animation: slideInFromLeft 0.4s ease-out;
}

#contact-form .imgcontacto{
    width: 100%;
    height: auto;
}

#contact-form h2{
    padding-top: 20px;
    color:#991aa5;
}

#contact-form #contactForm{
    padding-top: 30px;
    padding-bottom: 30px;
}

#contact-form #contactForm input{
    border-radius: 25px;
    border-color: #991aa5;
    border-style: solid; 
    border-width: 2px;
}

#contact-form #contactForm textarea{
    border-radius: 25px;
    border-color: #991aa5;
    border-style: solid; 
    border-width: 2px;
}


#contact-form #contactForm #submitButton{
    border-radius: 20px;
    width: 200px;
    height: 60px;
    background: #991aa5;
    border: none;
    color: aliceblue;
    font-weight: 800;
}

#contact-form #contactForm #submitButton:hover{
    background: #bf0bcf;
}