/* -------------------------------------------------------------------------- */
/*                            Custom Styles                                   */
/* -------------------------------------------------------------------------- */
.qr-box {
    width: 182px;
    height: 187px;
    border: 1px solid #ddd;
    display: inline-block;
    text-align: center;
    position: relative;
}
.qr-box > #qr-code {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.qr-box .qr-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
    display: none;
}
.qr-box .qr-show-scan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 42% 10%;
    border-radius: 8px;
    width: 99%;
    height: 99%;
    display: block;
}

/* OTP Field */
.otp-field {
    flex-direction: row;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-field input {
    height: 35px;
    width: 35px;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ddd;
}
.otp-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
    display: none;
}


/* Success Animation */
.success-animation {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* instructions  */
.instruction-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 2px;
    padding-bottom: 25px;
}

.instruction-step:after {
    content: "";
    display: block;
    height: calc(100% - 63px);
    position: absolute;
    bottom: calc(0% + 10px);
    width: 1px;
    border-left: 2px dashed #fff;
    left: calc(0% + 21px);
}

.instruction-step:last-child:after {
    display: none;
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #176fe0;
    font-size: 19px;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, .12);
}

.step-number {
    position: absolute;
    top: -5px;
    left: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d9f500;
    color: #1554a8;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #3189f5;
}

.step-content {
    padding-left: 15px;
    padding-top: 2px;
}

.step-content h6 {
    font-size: 14px;
    line-height: 1.4;
}

.step-content p {
    font-size: 12px;
    line-height: 1.5;
    opacity: .78;
    margin-bottom: 0;
}

.app-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.app-button-padding {
    padding: 5px 9px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 6px;
    background: rgb(0 0 0);
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
    text-decoration: none !important;
}

.app-store-btn i {
    font-size: 12px;
}

.app-store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.secure-box {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding: 11px 13px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .06);
}


.secure-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 11px;
    border-radius: 8px;
    background: rgba(217, 245, 0, .12);
    color: #d9f500;
    font-size: 16px;
}

.secure-text {
    opacity: .7;
    line-height: 1.4;
}