.container-contact-us {
    width: 96%;
    padding: 1rem;
    background-color: rgba(0,0,0,0.3);
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.label-contact-us {
    font-family: var(--font1);
    font-size: 2rem;
    color: var(--salmon);
}
.container-contact-us p {
    font-family: var(--font1);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
}
.container-inputs-contact-us {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}
.box-inputs-contact-us {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.box-inputs-contact-us label {
    font-family: var(--font1);
    color: var(--salmon);
    margin-left: 0.2rem;
}
.box-inputs-contact-us input {
    width: 100%;
    height: 2.2rem;
    font-family: var(--font1);
    border: none;
    border-radius: 0.2rem;
    padding: 0rem 0.5rem;
    outline: none;
    background-color: rgba(255,255,255,0.9);
}
.box-inputs-contact-us textarea {
    width: 100%;
    height: 6rem;
    font-family: var(--font1);
    outline: none;
    padding: 0.5rem;
    border: none;
    border-radius: 0.2rem;
    background-color: rgba(255,255,255,0.9);
}
.box-inputs-contact-us span {
    width: 100%;
    font-family: var(--font1);
    font-size: 0.7rem;
    padding-left: 0.2rem;
    color: rgba(255,255,255,0.7);
}
.input-send-message {
    width: 7rem;
    height: 1.6rem;
    background-color: var(--salmon);
    font-family: var(--font1);
    border: none;
    border-radius: 0.2rem;
    cursor: pointer;
    margin-left: 0.1rem;
    margin-top: 0.3rem;
}



@media (min-width: 768px){
    .container-contact-us {
        width: 45rem;
    }
}