#oneauth-wrapper {
    max-width: 420px;
    margin: 40px auto;
    padding: 25px;
    border: 1px solid #ddd;
    background: #fff;
}

.oneauth-step h2 {
    margin-bottom: 10px;
}

.oneauth-desc {
    color: #555;
    margin-bottom: 15px;
}

.oneauth-step input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.oneauth-btn {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: #fff;
    border: none;
    cursor: pointer;
}

.oneauth-btn:disabled {
    opacity: .6;
}

.oneauth-link {
    text-align: center;
    margin-top: 10px;
}

.oneauth-link a {
    color: #2271b1;
    text-decoration: none;
    font-size: 14px;
}

/* OTP boxes */
#oneauth-otp-boxes {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.oneauth-otp-digit {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 20px;
}

/* Timer */
#oneauth-resend-wrapper {
    font-size: 14px;
    color: #777;
}

/* Password Show / Hide */
.oneauth-password-wrap {
    position: relative;
}

.oneauth-toggle-password {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.oneauth-toggle-password svg {
    display: none;
    fill: #555;
}

.oneauth-toggle-password .icon-eye {
    display: block;
}

.oneauth-toggle-password.is-visible .icon-eye {
    display: none;
}

.oneauth-toggle-password.is-visible .icon-eye-off {
    display: block;
}
