main section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1648px;
    margin: 150px auto 200px auto;
    border-radius: 20px;
    overflow: hidden;
}

main section .bg {
    background: linear-gradient(225deg, rgba(232, 242, 255, 1) 0%, rgba(237, 244, 255, 1) 49.72%, rgba(240, 237, 255, 1) 98.89%);
    filter: blur(18px);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
main section .content {
    z-index: 10;
    display: flex;
    width: 100%;
}
main section .content .left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 60px;
}
main section .content .left,
main section .content .right {
    flex: 1;
}
main section .content h1 {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 114px;
    margin-bottom: 18px;
    text-wrap: nowrap;
}
main section .content p {
    font-size: 32px;
    font-weight: 400;
    color: rgba(103, 120, 151, 1);
    margin-bottom: 14px;
    margin-top: 0;
}
main section .content .right {
    margin-top: 273px;
    margin-left: 8%;
    margin-bottom: 100px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
form input {
    max-width: 536px;
    width: 100%;
    height: 60px;
    border-radius: 4px;
    border: 2px solid rgba(143, 167, 189, 1);
    outline: none;
    font-size: 28px;
    padding-left: 14px;
}
form input::placeholder {
    font-size: 28px;
    color: rgba(143, 167, 189, 1);
}
form textarea {
    max-width: 536px;
    width: 100%;
    height: 134px;
    border-radius: 4px;
    border: 2px solid rgba(143, 167, 189, 1);
    outline: none;
    resize: none;
    font-size: 28px;
    padding-left: 14px;
    padding-top: 8px;
    font-weight: bold;
}
form textarea::placeholder {
    font-size: 28px;
    color: rgba(143, 167, 189, 1);
}
.right .title {
    display: none;
}
button {
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
    width: 206px;
    height: 60px;
    border-radius: 4px;
    background: rgba(175, 200, 224, 1);
    font-size: 32px;
    font-weight: 400;
}
@media (max-width: 1280px) {
    main section .bg {
        margin: 0 5%;
    }
    section .content {
        flex-direction: column;
        align-items: center;
    }
    main section .content .right {
        margin-top: 54px;
        width: 100%;
    }
}
@media (max-width: 912px) {
    main section {
        width: 100%;
    }
    main section .content .left {
        display: none;
    }
    .right .title {
        display: block;
        font-size: 12px;
        text-align: center;
        margin-bottom: 12px;
    }
    .right {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 14px auto !important;
    }
    .form,
    .contact {
        width: 100%;
    }
    form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    form input {
        width: 60%;
        height: 16px;
        border-radius: 4px;
        border: 2px solid rgba(143, 167, 189, 1);
        outline: none;
        font-size: 9px;
        padding-left: 6px;
    }
    form input::placeholder {
        font-size: 9px;
        color: rgba(143, 167, 189, 1);
    }
    form textarea {
        width: 60%;
        border-radius: 4px;
        border: 2px solid rgba(143, 167, 189, 1);
        outline: none;
        resize: none;
        font-size: 9px;
        padding-left: 6px;
        padding-top: 2px;
        font-weight: bold;
        height: 28px;
    }
    form textarea::placeholder {
        font-size: 9px;
        color: rgba(143, 167, 189, 1);
    }
    button {
        color: white;
        border: none;
        cursor: pointer;
        outline: none;
        width: 40px;
        height: 13px;
        border-radius: 4px;
        background: rgba(175, 200, 224, 1);
        font-size: 8px;
        font-weight: 400;
    }
    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
    }
}
