label {
    display: block;
    margin: 14px 0 6px;
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

select,
input {
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
    background: rgba(255,255,255,.82);
    color: #111;
    border-radius: 16px;
    padding: 14px;
    outline: none;
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

select:focus,
input:focus {
    border-color: rgba(0,0,0,.34);
    box-shadow:
        0 0 0 4px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,.9);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #111 !important;
    -webkit-box-shadow: 0 0 0 1000px #fff8d6 inset !important;
    box-shadow: 0 0 0 1000px #fff8d6 inset !important;
    transition: background-color 9999s ease-in-out 0s;
}

.normal-input-wrap {
    position: relative;
}

.normal-input-wrap input {
    padding-right: 105px;
}

.normal-input-status {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: #999;
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
    transition: .2s;
}

.normal-input-status.waiting {
    color: #999;
}

.normal-input-status.invalid {
    color: #dc2626;
}

.normal-input-status.valid {
    color: #16a34a;
}

.normal-input-status.checking {
    color: #d97706;
}

.phone-input-wrap {
    position: relative;
}

.phone-input-wrap input {
    padding-top: 22px;
    padding-right: 90px;
}

.input-status-inside {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: #999;
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
    transition: .2s;
}

.input-status-inside.waiting {
    color: #999;
}

.input-status-inside.invalid {
    color: #dc2626;
}

.input-status-inside.valid {
    color: #16a34a;
}

.input-status-inside.checking {
    color: #d97706;
}

.native-hidden {
    display: none !important;
}

#stepOne {
    position: relative;
    z-index: 50;
}

.step-area {
    display: none;
}

.step-indicator {
    position: relative;
    z-index: 0;
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.step-dot {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(0,0,0,.12);
    transition: .3s;
}

.step-dot.active {
    background: #111111;
}

#stepThree input {
    text-align: center;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
}

#stepThree.show input {
    animation: pulse 2s infinite;
}

.marezu-id-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.marezu-id-row input {
    flex: 1;
}

.id-info {
    margin-top: 10px;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.form-locked {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

.question-wrap {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.question-menu {
    display: none;
    margin-top: 12px;
    border: 1px solid rgba(0,0,0,.09);
    background: rgba(255,255,255,.9);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.question-menu.active {
    display: block;
}

.question-item {
    padding: 10px 12px;
    border-radius: 12px;
    color: #555;
    font-size: 12px;
    cursor: pointer;
}

.question-item:hover {
    background: rgba(0,0,0,.055);
    color: #111;
}

.question-item.selected {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

#questionArrow {
    margin-left: 6px;
    vertical-align: -1px;
    transition: .25s;
    color: #111;
}

#questionArrow.rotate {
    transform: rotate(180deg);
}

.typing-cursor.typing::after {
    content: "|";
    animation: blink .8s infinite;
    color: #111;
    margin-left: 2px;
}

#stepTwo .password-strength-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

#stepTwo .password-strength-label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    white-space: nowrap;
}

#stepTwo .password-strength-label span {
    color: #111;
    font-weight: 700;
}

#stepTwo .password-strength {
    display: flex;
    gap: 5px;
    width: max-content;
    padding: 5px;
    border-radius: 999px;
    background: rgba(0,0,0,.06);
}

#stepTwo .password-strength span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,.14);
    transition: .25s;
}

#stepTwo .password-strength.weak span:nth-child(1) {
    background: #ef4444;
}

#stepTwo .password-strength.medium span:nth-child(-n+2) {
    background: #f97316;
}

#stepTwo .password-strength.good span:nth-child(-n+3) {
    background: #eab308;
}

#stepTwo .password-strength.strong span {
    background: #22c55e;
}

.password-input-wrap {
    position: relative;
}

.password-input-wrap input {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    color: #8a8a8a;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #111;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    pointer-events: none;
}

.password-toggle,
.password-toggle:hover,
.password-toggle:focus,
.password-toggle:active {
    top: 50% !important;
    right: 14px !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.password-toggle:hover svg {
    transform: scale(1.08);
    opacity: .8;
}

.password-again-wrap {
    position: relative;
}

.password-match-inside {
    position: absolute;
    top: 10px;
    left: 14px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: #999;
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
}

.password-again-wrap input {
    padding-top: 22px;
}

.password-match-inside.success {
    color: #16a34a;
}

.password-match-inside.error {
    color: #dc2626;
}
