.yh-verify-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main-bg-color, #fff);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    padding: 25px 20px 20px;
    border-radius: 10px;
    box-shadow: 0 -50px 50px rgba(0,0,0,.2);
    width: 90%;
    max-width: 320px;
    z-index: 1080;
    transition: .6s cubic-bezier(.28,.9,.34,.99);
    margin-top: 20px;
}

.yh-verify-modal-header {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding: 0 15px;
}

.yh-verify-modal-header h3 {
    font-size: 18px;
    color: var(--key-color);
    margin: 0;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    cursor: pointer;
}

.yh-verify-modal-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--theme-color, #f04494);
    transform: translateX(0);
    transition: width .8s cubic-bezier(.4,0,.2,1);
}

.yh-verify-modal-header h3:hover:after {
    width: 100%;
}

.yh-verify-close {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all .3s;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.yh-verify-close:hover {
    transform: rotate(180deg);
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
}

.yh-verify-tabs {
    display: flex;
    margin: 0 -16px 15px;
    border-radius: 4px;
    overflow: hidden;
}

.yh-verify-tabs span {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: all .3s;
    color: var(--muted-2-color);
    font-size: 14px;
    background: var(--main-shadow);
}

.yh-verify-tabs span:hover {
    color: var(--main-color);
}

.yh-verify-tabs span.active {
    --this-bg: var(--focus-color-opacity1);
    --this-color: var(--focus-color);
    background: var(--this-bg);
    color: var(--this-color);
}

.yh-verify-input-box {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    padding-bottom: 1px;
}

.yh-verify-input {
    width: 100%;
    padding: 8px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--main-border-color);
    border-radius: 0;
    font-size: 14px;
    color: var(--main-color);
    transition: all .2s;
}

.yh-verify-input-box .line-form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: var(--main-border-color);
}

.yh-verify-input-box .line-form-line:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    transform: translateX(-100%);
    transition: transform .8s cubic-bezier(.4,0,.2,1);
    background: var(--theme-color, #f04494);
}

.yh-verify-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

.yh-verify-input:focus + .line-form-line:before {
    transform: translateX(0);
}

.yh-verify-input::placeholder {
    color: var(--muted-2-color);
    font-size: 13px;
}

#yh-verify-form .line-form-line,
#yh-verify-form .line-form-line:before {
    background: var(--main-border-color);
}

#yh-verify-form .line-form-line:before {
    background: var(--theme-color, #f04494);
}

.yh-verify-submit {
    width: 100%;
    padding: 10px;
    background: var(--focus-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all .2s;
}

.yh-verify-submit:hover {
    opacity: .9;
}

.yh-verify-footer {
    text-align: center;
    margin-top: 12px;
}

.yh-verify-later {
    background: none;
    border: none;
    color: var(--muted-2-color);
    cursor: pointer;
    padding: 6px 10px;
    font-size: 13px;
    transition: color .2s;
}

.yh-verify-later:hover {
    color: var(--focus-color);
} 