/* Gunay SMS Panel — استایل فرم ورود با پیامک */
.gunay-otp-card {
	--gunay-green: #6b4423;
	--gunay-green-dark: #57371d;
	--gunay-pink: #c17f3e;
	--gunay-border: #e5dccd;
	--gunay-ink: #2e2016;
	--gunay-muted: #9a8b76;
	box-sizing: border-box;
	max-width: 380px;
	margin: 0 auto;
	padding: 28px 24px 24px;
	background: #fff;
	border: 1px solid var(--gunay-border);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba( 40, 50, 20, 0.08 );
	font-family: inherit;
	color: var(--gunay-ink);
	direction: rtl;
	text-align: right;
}
.gunay-otp-card * {
	box-sizing: border-box;
}
.gunay-otp-head {
	text-align: center;
	margin-bottom: 22px;
}
.gunay-otp-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: linear-gradient( 135deg, var(--gunay-green), #a76631 );
	color: #fff;
}
.gunay-otp-badge svg {
	width: 28px;
	height: 28px;
}
.gunay-otp-title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
}
.gunay-otp-sub {
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--gunay-muted);
	line-height: 1.7;
}
.gunay-otp-sub b {
	color: var(--gunay-green);
	direction: ltr;
	display: inline-block;
}
.gunay-otp-field {
	margin-bottom: 14px;
}
.gunay-otp-field label {
	display: block;
	margin: 0 0 7px;
	font-size: 13px;
	font-weight: 700;
	color: var(--gunay-ink);
}
.gunay-otp-input {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid var(--gunay-border);
	border-radius: 12px;
	font-size: 18px;
	direction: ltr;
	text-align: center;
	background: #faf6f1;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.gunay-otp-input::placeholder {
	color: #c4b8a4;
	letter-spacing: normal;
}
#gunayOtpCode {
	letter-spacing: 10px;
	font-weight: 700;
	padding-right: 26px; /* جبران letter-spacing برای وسط ماندن */
}
.gunay-otp-input:focus {
	outline: none;
	background: #fff;
	border-color: var(--gunay-green);
	box-shadow: 0 0 0 4px rgba( 107, 68, 35, 0.14 );
}
.gunay-otp-btn {
	width: 100%;
	padding: 14px 16px;
	border: 0;
	border-radius: 12px;
	background: var(--gunay-green);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.05s ease;
}
.gunay-otp-btn:hover {
	background: var(--gunay-green-dark);
}
.gunay-otp-btn:active {
	transform: translateY( 1px );
}
.gunay-otp-btn:disabled {
	opacity: 0.6;
	cursor: default;
}
.gunay-otp-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
	gap: 12px;
}
.gunay-otp-link {
	background: none;
	border: 0;
	padding: 0;
	color: var(--gunay-green);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}
.gunay-otp-link:hover {
	text-decoration: underline;
}
.gunay-otp-link:disabled {
	color: var(--gunay-muted);
	cursor: default;
	text-decoration: none;
	font-weight: 400;
}
.gunay-otp-msg {
	margin-top: 14px;
	min-height: 20px;
	font-size: 13.5px;
	text-align: center;
	line-height: 1.7;
}
.gunay-otp-msg.is-error {
	color: #b32d2e;
}
.gunay-otp-msg.is-success {
	color: #5f7a4a;
}
.gunay-otp--done {
	max-width: 380px;
	margin: 0 auto;
	padding: 16px;
	text-align: center;
	color: var(--gunay-muted, #7d8470);
}
/* حالت موبایل */
@media ( max-width: 420px ) {
	.gunay-otp-card {
		padding: 22px 16px;
		border-radius: 14px;
	}
}
