#kc-totp-setup {
    width: 100%;
}

.totp-step {
    text-align: left;
}

.totp-step-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
}

.totp-step-description {
    margin: 0 0 20px;
    color: #777;
    font-size: 15px;
    line-height: 1.4;
}

.totp-qr-wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0 16px;
}

#kc-totp-secret-qr-code {
    display: block;
    width: 180px;
    height: 180px;
    padding: 8px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 9px;
}

.totp-manual-link {
    display: block;
    text-align: center;
    margin-bottom: 28px;
    color: #635bff;
    font-weight: 500;
    text-decoration: none;
}

.totp-divider {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 28px 0;
}

.totp-code-input.form-control {
    display: block;
    width: 100%;
    max-width: 360px;
    margin-top: 16px;
    font-size: 24px;
    letter-spacing: 8px;
	padding: 8px;
}

#kc-form-buttons {
    margin-top: 24px;
}

.totp-code {
    display: flex;
	justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.totp-digit.form-control {
    width: 48px;
    height: 48px;
    max-width: 48px;
    flex: 1;

    padding: 0;
    border: 1px solid #d1d1d1;
    border-radius: 8px;

    font-size: 20px;
    font-weight: 500;
    text-align: center;

    outline: none;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .totp-code {
        gap: 8px;
    }

    .totp-digit.form-control {
        max-width: none;
		width: 40px;
		height: 40px;
		max-width: 40px;
    }
}

.totp-or-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0;
    color: #666;
    font-size: 14px;
}

.totp-or-divider span:first-child,
.totp-or-divider span:last-child {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.totp-manual-section {
    margin-bottom: 24px;
}

.totp-secret-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
}

.totp-secret-input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 0;
    outline: none;
    font-size: 15px;
    letter-spacing: 2px;
    background: #fff;
}

.totp-secret-input:focus {
    outline: none;
}

.totp-secret-action {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 0;
    border-left: 1px solid #eee;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.totp-secret-action:hover {
    background: #eaeaea;
}

.totp-copy-message {
    height: 20px;
    margin-top: 6px;
    text-align: center;
    font-size: 13px;
    color: #198754;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.totp-copy-message.visible {
    opacity: 1;
}

.second-column:has(#kc-totp-setup) {
	padding: 40px 105px;
}

@media (max-width: 768px) {
	.second-column:has(#kc-totp-setup) {
		padding: 40px;
	}
}