/* Saudi phone: flag/country select + 9-digit local input */
.aq-phone-field {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 8px;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

[dir="rtl"] .aq-phone-field {
	flex-direction: row-reverse;
}

.aq-phone-field .aq-phone-country {
	flex: 0 0 auto;
	min-width: 7.5rem;
	max-width: 40%;
	padding: 0.5rem 0.35rem;
	font-size: inherit;
	line-height: 1.25;
	border: 1px solid var(--Colors-Gray-Light, #e0e0e0);
	border-radius: 8px;
	background: var(--Colors-White, #fff);
	color: inherit;
	cursor: pointer;
	box-sizing: border-box;
}

.aq-phone-field .aq-phone-local {
	flex: 1 1 auto;
	min-width: 0;
	box-sizing: border-box;
}

/* Inside stacked field rows (create account, forgot password, join partner) */
.Field .aq-phone-field,
.forgot-password-field .aq-phone-field,
.join-partner-input-field .aq-phone-field {
	width: 100%;
}

.form-input-group .aq-phone-field {
	width: 100%;
}
