.sotp-wrapper {
	max-width: 380px;
	margin: 0 auto;
	padding: 24px;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	font-family: Tahoma, Arial, sans-serif;
	direction: rtl;
	text-align: right;
}

.sotp-form .sotp-field {
	margin-bottom: 16px;
}

.sotp-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	color: #333;
}

.sotp-form input[type="tel"] {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	direction: ltr;
	text-align: center;
	letter-spacing: 1px;
	outline: none;
	transition: border-color 0.2s;
}

.sotp-form input[type="tel"]:focus {
	border-color: #4a90e2;
}

.sotp-btn {
	width: 100%;
	padding: 12px;
	font-size: 15px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: opacity 0.2s;
}

.sotp-btn-primary {
	background: #4a90e2;
	color: #fff;
}

.sotp-btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.sotp-btn-primary:hover:not(:disabled) {
	opacity: 0.9;
}

.sotp-message {
	min-height: 20px;
	font-size: 13px;
	margin-bottom: 10px;
}

.sotp-message.sotp-error {
	color: #d9534f;
}

.sotp-message.sotp-success {
	color: #28a745;
}

.sotp-otp-desc {
	font-size: 13px;
	color: #555;
	margin-bottom: 14px;
}

.sotp-timer {
	font-size: 13px;
	color: #777;
	margin-bottom: 12px;
	text-align: center;
}

.sotp-resend-row {
	display: flex;
	justify-content: space-between;
	margin-top: 14px;
}

.sotp-btn-link {
	background: none;
	border: none;
	color: #4a90e2;
	font-size: 13px;
	cursor: pointer;
	padding: 4px;
}

.sotp-btn-link:disabled {
	color: #aaa;
	cursor: not-allowed;
}

.sotp-logged-in {
	text-align: center;
}

.sotp-logout-link {
	display: inline-block;
	margin-top: 10px;
	color: #d9534f;
	text-decoration: none;
}
