d-none {
    display: none;
}

.form-section > div {
    justify-content: center;
}

.form-main {
    /*width:50% !important;*/
    border-radius: 16px;
    padding: 15px;
}

.form-main button {
    width: 100%;
    border-radius: 9999px !important;
    background-image: linear-gradient(to right, #8b5cf6, #22d3ee);
    font-weight: 600;
}

.form-main button:hover {
    background-image: linear-gradient(to right, #22d3ee, #8b5cf6);
}

.form-main input, .form-main textarea {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(70, 72, 255, 0.24) !important;
    border-radius: 0.75rem !important;
    color: #FFFFFF99 !important;
}

.form-main textarea {
    min-height: 150px;
}

.form-popup-section {
    display: none !important;
    align-items: center;
!important;
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%);
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999;
}

.form-popup-section-active {
    display: flex !important;
}

.form-popup-section > div {
    max-width: 500px !important;
    width: 100% !important;
}

.popup-close-btn {
    position: absolute !important;
    top: 0;
    justify-content: flex-end;
}

.popup-close-btn a {
    background:linear-gradient(to right, #8b5cf6, #22d3ee) !important;
    position: relative;
    border-radius:40px !important;
}

.popup-close-btn a:before {
    content: "\2715";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 21px;
    color: #fff !important;
}


@media (max-width: 768px) {
    .form-popup-section > div {
        width: 70% !important;
    }
}

@media (max-width: 576px) {
    .form-popup-section > div {
        width: 100% !important;
    }
}