.form-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
}

.form-page-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-layout-dynamic-form-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    max-width: 600px;
    width: 50%;
    border: 1px solid #e7e2e2;
}

.no-layout-dynamic-form-box .custom-btn {
    margin-top: 25px;
}

.custom-btn .btn.btn-main {
    background: linear-gradient(to right, #FF3834 0%, #FF7133 100%);
    color: #ffffff;
}

.custom-btn .btn {
    background: #b9b9b9;
    padding: 10px 30px;
    font-weight: 600;
    color: #504d4d;
}

.custom-btn .btn.btn-main:hover {
    background: linear-gradient(to right, #e56a34 0%, #e32925 100%);
    color: #ffffff;
}

.captcha_container {
    display: flex;
    align-items: center;
    gap: 10px
}

#captcha-refresh,#captchaText {
    display: inline-flex;
    align-items: center
}

#captcha-refresh {
    background: #d7d2d2;
    justify-content: center;
    font-size: 18px;
    padding: 3px;
    border-radius: .25rem;
    cursor: pointer
}

#captchaText {
    background: #f5e5e1;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #f7caca
}