/* Verify Page Styles */

.features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(8px, 3vw, 20px);
    margin-bottom: 30px;
    padding: 0 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: clamp(10px, 2.8vw, 13px);
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.check-icon {
    width: clamp(14px, 4vw, 18px);
    height: clamp(14px, 4vw, 18px);
    flex-shrink: 0;
}

.check-icon svg {
    width: 100%;
    height: 100%;
}

.verification-box {
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.verification-box .code-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-box .divider {
    width: 1px;
    height: 28px;
    background: #d1d5db;
    flex-shrink: 0;
}

.verification-box .code-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    letter-spacing: 0.5px;
}

.verification-box .code-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
    font-size: 14px;
}

#verifyBtn {
    margin-top: 10px;
}
