* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Tajawal', sans-serif;
	background-color: #F1ECE6;
	direction: rtl;
	text-align: right;
}

.header {
	background-color: #F1ECE6;
	padding: 20px;
	display: flex;
	align-items: center;
	box-shadow: none;
}

.header .back-btn {
	background: none;
	border: none;
	color: #AF7355;
	font-size: 24px;
	cursor: pointer;
	margin-left: 15px;
}

.header h1 {
	color: #AF7355;
	font-size: 20px;
	font-weight: 600;
}

.container {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #1A3A53;
	font-size: 16px;
}

.form-group input {
	width: 100%;
	padding: 12px;
	border: none;
	border-bottom: 2px solid #ccc;
	background: transparent;
	color: #1A3A53;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-group input:focus {
	outline: none;
	border-bottom-color: #1A3A53;
}

.form-group input::placeholder {
	color: rgba(26, 58, 83, 0.4);
}

.btn {
	background-color: #1A3A53;
	color: #D8CAB8;
	border: none;
	padding: 12px 40px;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
	font-family: 'Tajawal', sans-serif;
}

.btn:hover {
	background-color: #0f2235;
}

.btn-full {
	width: 100%;
	padding: 15px;
}

.btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.error-message {
	color: red;
	text-align: center;
	margin: 10px 0;
}

.success-message {
	color: green;
	text-align: center;
	margin: 10px 0;
}

.otp-container {
	margin: 20px 0;
}

.otp-inputs {
	display: flex;
	justify-content: center;
	gap: 10px;
	direction: ltr;
	margin: 20px 0;
}

.otp-input {
	width: 50px;
	height: 60px;
	text-align: center;
	border: 1.5px solid #1A3A53;
	border-radius: 8px;
	font-size: 18px;
	color: #1A3A53;
	background: white;
}

.user-card {
	background: white;
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	margin: 20px 0;
}

.user-card h3 {
	color: #1A3A53;
	margin-bottom: 10px;
}

.user-card .name {
	font-size: 18px;
	font-weight: bold;
	color: #1A3A53;
	margin-bottom: 15px;
}

.divider {
	height: 1px;
	background-color: #AF7355;
	margin: 15px 40px;
}

.info-row {
	display: flex;
	align-items: center;
	margin: 10px 0;
	color: #1A3A53;
}

.info-row i {
	margin-left: 10px;
	color: #1A3A53;
}

.dropdown {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 15px;
	background: white;
	color: #1A3A53;
	font-size: 16px;
	font-family: 'Tajawal', sans-serif;
}

.image-preview {
	text-align: center;
	margin: 20px 0;
}

.image-preview img {
	max-width: 100%;
	max-height: 200px;
	border-radius: 10px;
}

.no-image {
	color: #ccc;
	font-size: 48px;
}

.loading {
	text-align: center;
	color: #1A3A53;
}

.hidden {
	display: none;
}

.center {
	text-align: center;
}

.date-display {
	background: #f5f5f5;
	padding: 10px;
	border-radius: 8px;
	margin: 10px 0;
	text-align: center;
	color: #1A3A53;
}