#oneauth-wrapper {
    max-width: 420px;
    margin: 40px auto;
    padding: 25px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.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;
}

.oneauth-readonly-email {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* 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;
}

.oneauth-info-message {
    background: #f6f7f7;
    border-left: 4px solid #2271b1;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}


.oneauth-inform-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.oneauth-btn.secondary {
    background: #f0f0f0;
    color: #333;
}

.oneauth-terms {
    display: block;
    margin: 12px 0;
    font-size: 12px;
    line-height: 1.4;
}

.oneauth-terms input {
    margin-right: 6px;
}

.oneauth-terms a {
    color: #2271b1;
    text-decoration: none;
}

.oneauth-terms a:hover {
    text-decoration: underline;
}

