/* ======== FORM POPUP ======== */
.form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}
.form-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
.form-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #151422;
    opacity: 0.75;
    cursor: pointer;
}
.form-popup__content {
    position: relative;
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 30px;
    z-index: 99999;
    color: #151422;
    border-radius: 10px;
}
.form-popup__close {
    position: absolute;
    right: 20px;
    top: 10px;
    background-color: var(--primary-color);
    padding: 2px 13px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.4s;
}
.form-popup__close:hover {
    color: var(--text-light);
    background: var(--secondary-blue);
}
.form-popup.investor-page .form-popup__close {
    background-color: var(--accent-color);
}
.form-popup.investor-page .form-popup__close:hover {
    color: var(--light-text);
    background: var(--primary-color);
}
.form-popup__title {
    font-size: 24px;
}

.form-popup__content .form-content {
    display: block;
    margin-top: 30px;
    max-width: 100%;
}

.form-popup__content  input,
.form-popup__content  textarea {
    width: 100%;
    margin-bottom: 20px;
    background-color: transparent;
    color: var(--dark-blue);
}

form .success-result {
    margin-top: 20px;
    font-size: 18px;
}