.contact-main-section {
    justify-content: center;
}

.contact-main-section .call-to-action {
    width: 30vw;
}

.contact-text {
    font-size: 3.5em;
    font-weight: bold;
    margin: 0;
}

.accent-text {
    color: #bc3a88;
}

.contact-form {
    background-color: #272A3B;
    width: 50vw;
    max-width: 50%;
    padding: 2rem 4rem;
    border-radius: 20px;
}

.input-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    font-weight: bold;
    margin-bottom: .5rem;
}

.input-group input {
    outline: none;
    background: white;
    border: 1px solid #2e3852;
    font-size: 1em;
    padding: .5rem;
    color: black;
    border-radius: 5px;
    font-family: inherit;
}

.input-group input:focus {
    border-color: #596da0;
}

.input-group textarea {
    border-radius: 5px;
    padding: .5rem;
    font-size: 1em;
    font-family: inherit;
    height: 6rem;
}

@media (max-width: 900px) {
    .contact-main-section {
        flex-direction: column;
        justify-content: center;
    }

    .contact-main-section .call-to-action {
        width: 90vw;
        align-items: center;
        margin: 1rem 0 0 0;
    }

    .contact-form {
        width: 80vw;
        max-width: inherit;
        margin: 1rem 0;
        padding: 1rem 2rem;
    }

    .contact-main-section .title {
        text-align: center;
    }
}

.contact-page-item-1 {
    position: absolute;
    overflow: hidden;
    width: 40vw;
    height: 40vw;
    bottom: 5vw;
    left: 0;
    z-index: -1;
}

.contact-page-item-1::before {
    content: '';
    transform: translate(-20%, 40%);
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgb(188, 58, 128, .1);
}

.contact-page-item-2 {
    position: absolute;
    width: 25vw;
    height: 25vw;
    border-radius: 50%;
    background-color: rgb(52, 87, 178, .1);
    top: 15vh;
    left: 30vw;
    z-index: -1;
}

.contact-page-item-3 {
    position: absolute;
    overflow: hidden;
    width: 45vw;
    height: 45vw;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.contact-page-item-3::before {
    content: '';
    transform: translate(40%, 40%);
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgb(52, 87, 178, .1);
}
