.contact {
  background-image: url(../images/blob-scene-haikei.svg);
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: cover;
  background-position: top right 0;
}

.contact-us-container {
  max-width: 1200px;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  gap: 50px;
}

.contact-left {
    width: 50%;
}

.contact-right {
    width: 50%;
}

.contact-right .img-container {
    margin-top: -100px;
}

.contact-right img {
    width: 100%;
}

.contact-us-container h1 {
  color: var(--primary-text);
  font-size: 1rem;
  font-weight: 700;
}

.contact-us-container h2 {
  color: var(--primary-text);
  font-size: 2.5rem;;
  font-weight: 700;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    margin-top: 30px;
}

.contact-form input, .contact-form textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(60, 76, 107, .5);
    width: 100%;
    font-size: 1.125rem;
}

.btn-submit {
    color: var(--btn-primary-text);
}

input:focus,
textarea:focus {
  border-bottom: 1px solid #5AA9E6; /* your brand color */
  outline: none;
  box-shadow: none;
}

textarea {
    padding: 0.4rem 0;
    border: none;
    border-bottom: 1px solid #8A94A6;
    background: transparent;
    resize: none;            
    font-family: inherit;
    font-size: 1rem;
    height: 2.4rem;
    overflow: hidden;
}

::placeholder {
  color: var(--black-bg);
  opacity: 0.45;
}

.form-action {
    margin-top: 16px;
}

.error-message {
    color: red;
    font-weight: 400;
}

@media screen and (max-width: 992px) {
    .contact-us-container {
        width: 90%;
        gap: 0;
    }

    .contact-right .img-container {
        margin-top: 0px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .contact-us-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-left, .contact-right {
        width: 100%;
        margin: auto;
    }
    
    .contact-right img {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .contact-us-container {
        gap: 60px;
    }
}
@media screen and (max-width: 480px) {
    .contact-us-container h2 {
        font-size: 2.35rem;
    }

    .contact-right {
        display: none;
    }
}


