#contact-container {
    width: 80%;
    margin: auto;
    gap: 150px;
    margin: 150px auto;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
}

#contact-header {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
}

.contact-heading {
    font-size: 64px;
    color: #12AAFB;
}

.contact-paragraph {
    width: 100%;
    font-size: 20px;
    margin-bottom: 50px;
}

#contact-info {
    width: 50%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #A8A8A8;
}

#contact-info h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

#contact-info p {
    font-size: 20px;
    color: #B8B8B8;
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.contact-info-item img {
    height: 50px;
    width: 50px;
}

#contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* background-color: rgba(0, 0, 0, 0.3); */
    backdrop-filter: blur(5px);
    padding: 50px;
}

#contact-form input,
#contact-form textarea {
    width: 50%;
    padding: 15px 0;
    border: none;
    background-color: inherit;
    font-size: 15px;
    font-weight: 700;
    border-bottom: white solid 2px;
}

#contact-form textarea {
    resize: vertical;
    width: 90%;
    height: 75px;

}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: white;
    font-family: poppins, sans-serif;
    font-weight: 700;
    font-size: 15px;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-bottom: white solid 2px;
}

#contact-form button {
    width: fit-content;
    padding: 10px 25px;
    margin-top: 20px;
    background-color: White;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    color: #12AAFB;
    cursor: pointer;
    transition: 0.3s all;
}

#contact-form button:hover {
    background-color: #12AAFB;
    color: white;
    transition: 0.3s all;
}

@media screen and (max-width: 768px) {
    #contact-container {
        width: 90%;
        flex-wrap: wrap;
        text-align: center;
        gap: 100px;
    }

    #contact-header {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        height: fit-content;
        align-items: baseline;
        text-align: left;
    }

    .contact-heading {
        font-size: 48px;
    }

    .contact-paragraph {
        width: 80%;
        margin-bottom: 0;
    }

    #contact-info {
        width: 90%;
        margin: auto;
        padding: 0;
        border-left: none;
        align-items: center;
    }

    #contact-form {
        padding: 20px;
        border-radius: 0;
    }

    #contact-form input,
    #contact-form textarea {
        width: 100%;
    }
}