.rf-container {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
}

.rf-container__inner {
    box-sizing: border-box;
    max-width: 460px;
    width: 500px;
}

.rf-form__header {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    box-sizing: border-box;
    padding: 24px 16px;
    text-align: center;
    color: #fff;
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    background: #7ed321;
}

.rf-form__content {
    position: relative;
    box-sizing: border-box;
    border-radius: inherit;
}

.rf-form__loader {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.8);
}

.rf-form__loader::before {
    content: '';
    display: block;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
    border-color: currentColor transparent currentColor transparent;
    animation: rf-spin 1.2s linear infinite;
}

.rf-form-field {
    width: 100%;
}

.rf-form-field__error {
    line-height: 1.25;
    display: none;
    width: 100%;
    margin-top: 8px;
    color: #ef4444;
}

.rf-form-input {
    font-size: 14px;
    line-height: 24px;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 12px;
    color: #0f172a;
    border: 0 solid #e5e7eb;
    border-radius: 6px;
    box-shadow: #fff 0 0 0 0, #e2e8f0 0 0 0 1px, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
    background-color: #fff;
    appearance: none;
}

.rf-form-input:focus {
    box-shadow: #fff 0 0 0 0, #3b82f6 0 0 0 2px, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
}

.rf-form-button {
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    border: 0 solid #e5e7eb;
    border-radius: 8px;
    background: #7ed321;
}

.rf-form-button:focus {
    outline: none;
    box-shadow: #fff 0 0 0 0, rgb(147, 197, 253) 0 0 0 3px, rgba(0, 0, 0, 0) 0 0 0 0;
}

.rf-alert {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 8px;
    border-radius: 8px;
}

.rf-alert_error {
    color: #b91c1c;
    background: #fee2e2;
}

.rf-alert_success {
    color: #15803d;
    background: #dcfce7;
}

.rf-alert__icon {
    opacity: 0.65;
    width: auto;
}

.rf-alert__content {
    font-size: 14px;
    line-height: 20px;
    padding-left: 12px;
}

.rf-alert__content * {
    font-family: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

.rf-alert__content>* {
    margin: 0 !important;
    padding: 0 !important;
}

.rf-alert__content>*+* {
    margin-top: 0.35em !important;
}

.rf-alert__content>h1,
.rf-alert__content>h2,
.rf-alert__content>h3,
.rf-alert__content>h4,
.rf-alert__content>h5,
.rf-alert__content>h6 {
    font-size: 100% !important;
    font-weight: 600 !important;
}

.rf-alert__content>ul,
.rf-alert__content>ol {
    padding-left: 1.5em !important;
}

.rf-form__content>*+* {
    margin-top: 16px;
}

.rf-form__content> :last-child {
    margin-top: 20px;
}

.rf-logos {
    display: flex;
    flex-wrap: wrap;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.rf-logos>* {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    max-width: 33.3%;
    padding: 8px;
}

.rf-logo {
    height: auto;
    max-width: 100%;
}

.rf-bid,
.rf-ask {
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: flex-start;
    white-space: nowrap;
}

.rf-bid>small,
.rf-ask>small {
    font-size: 12px;
    padding-right: 4px;
}

.rf-bid>span,
.rf-ask>span {
    transform: rotate3d(0, 1, 0, 0deg);
    animation: rf-flip 10s cubic-bezier(1, 0, 0, 1) 0s infinite;
}

.rf-bid {
    color: #84cc16;
}

.rf-bid>small {
    color: #f59e0b;
}

.rf-ask {
    color: #6b7280;
}

.rf-ask>small {
    color: #9ca3af;
}

.rf-form__header {
    display: none;
}

.rf-form-button {
    border-radius: 20px;
    padding: 20px;
    font-size: 20px;
    box-shadow: 0px 4px 0px #69b31f, 0px 254px 102px rgba(6, 26, 45, 0.01), 0px 143px 86px rgba(6, 26, 45, 0.05), 0px 63px 63px rgba(6, 26, 45, 0.09), 0px 16px 35px rgba(6, 26, 45, 0.1), 0px 0px 0px rgba(6, 26, 45, 0.1);
}