.contact__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.contact__container--header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 700px;
    animation: fade_in_about_us_textbox 1s ease forwards;
    opacity: 0;
}

.contact__container--header h1 {
    font-size: 3rem;
}

.contact__container--header h1 span {
    font-size: 3.2rem;
    background: var(--main-color);
    color: transparent;
    background-clip: text;
    background-size: 800% 800%;
    animation: text-gradient 6s ease infinite;
    font-weight: 700;
}

.contact__container--header p {
    font-size: 1.2rem;
}

.contact-us-options--item {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fade_in_about_us_textbox 1s ease forwards;
    animation-delay: 500ms;
    opacity: 0;
}

.contact-us-options--item:nth-child(2) {
    animation-delay: 700ms;
}

.contact-us-options--item a {
    text-decoration: none;
}

.contact-us-options--item i {
    font-size: 3rem;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    padding: 1rem;
}

.contact-us-options--item-text {
    text-align: left;
}

.contact-us-options--item-text h2 {
    background: var(--main-color);
    color: transparent;
    background-clip: text;
    background-size: 800% 800%;
    animation: text-gradient 6s ease infinite;
    font-size: 2.5rem;
    font-weight: 500;
}

.contact-us-options--item-text p {
    font-size: 1.2rem;
    font-weight: 400;
}

.contact__container--contact-us-options-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__container--contact-us-contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    animation: fade_in_contact_form 1s ease forwards;
    animation-delay: 1100ms;
    opacity: 0;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

.contact__container--contact-us-contact-form * {
    color: #333;
}

.contact__container--contact-us-contact-form h2 {
    font-size: 2rem;
}

.contact-form__input-box {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-form__input-box input,
.contact-form__input-box textarea {
    border: none;
    border-bottom: 2px solid #333;
    font-size: 1.2rem;
    padding: 5px 5px;
}

.contact-form__input-box input:focus,
.contact-form__input-box textarea:focus {
    outline: none;
}

.contact-form__agreement {
    font-size: 0.9rem;
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    align-items: center;
}

.contact-form__agreement a {
    text-decoration: none;
    font-weight: 700;
    background: var(--main-color2);
    color: transparent;
    background-clip: text;
    background-size: 800% 800%;
    animation: text-gradient 8s ease infinite;
}

.contact-form__agreement input {
    height: 1rem;
    width: 1rem;
    cursor: pointer;
}

#contact-form label {
    cursor: pointer;
}

.contact-form__submit {
    margin-top: 0.5rem;
}

.contact-form__submit input {
    width: 100%;
    height: 3rem;
    border-radius: 5px;
    background: var(--main-color2);
    animation: text-gradient 8s ease infinite;
    background-size: 800% 800%;
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.5s ease, transform 0.5s ease;
    border: none;
}

.contact-form__submit input:hover {
    transform: translateY(-2px);
    background: var(--main-color);
    background-size: 800% 800%;
}

.contact__container--contact-us {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

#msg {
    overflow-y: auto;
    resize: none;
    max-height: 150px;
}

.contact__container {
    padding: 5rem;
}

#send_message {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    background: #b13cff;
    border-radius: 20px;
    font-weight: 700;
    opacity: 0;
    text-align: center;
}

#send_message.animated {
    animation: send_message_animation 2s forwards;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin: 5px;
}

@media (max-width: 768px) {
    .contact__container--contact-us {
        flex-direction: column;
    }
}