.contact-container {
    background-color: var(--secondaryDarkClr);
}

.contact-box {
    margin: auto;
    max-width: 1800px;
}

.contact-box input,
.contact-box textarea
{
    background-color: var(--transparent);
    color: white;
    border: 1px solid white;
    border-top: none;
    border-right: none;
    padding: .4rem 1rem;
    border-radius: 1rem 0 1rem 0;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder{
    color: var(--white);
}

.subscribe-form input
{
    background-color: var(--transparent);
    color: white;
    border: 1px solid white;
    border-top: none;
    border-right: none;
    padding: .4rem 1rem;
    border-radius: 1rem 0 1rem 0;
}


.subscribe-form button {
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}


@media screen and (max-width: 575px) {
    .subscribe-form button {
        margin-top: 10px;
        clip-path: none;
    }
}
@media screen and (max-width: 1199px) {
    .decor-line-long {
        margin: 0 auto 3rem auto !important;
    }
}