@font-face {
	font-family: 'Greycliff Arabic CF';
	src: url('/fonts/fonnts.com-Greycliff_Arabic_CF_Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Greycliff Arabic CF';
	src: url('/fonts/fonnts.com-Greycliff_Arabic_CF_Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Greycliff Arabic CF';
	src: url('/fonts/fonnts.com-Greycliff_Arabic_CF_Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
}

body {
	font-family: 'Greycliff Arabic CF', sans-serif;
	background-color: #F2EFEB;
	color: #333;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
}

h2 {
	color: #067E7A;
	font-size: 32px;
	text-align: center;
	margin-bottom: 20px;
}

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

label {
	font-size: 16px;
	color: #333;
	margin-bottom: 5px;
	display: block;
}

input[type="text"],
input[type="password"] {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
	border-color: #067E7A;
}

button {
	font-family: 'Greycliff Arabic CF', sans-serif;
	width: 100%;
	background-color: #067E7A;
	color: white;
	padding: 12px;
	font-size: 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #62D3CB;
}

.form-footer {
	text-align: center;
	margin-top: 20px;
}

.form-footer a {
	color: #067E7A;
	text-decoration: none;
	font-size: 16px;
}

.form-footer a:hover {
	color: #62D3CB;
}

.alert {
	background-color: #f8d7da;
	color: #721c24;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	border: 1px solid #f5c6cb;
	font-size: 14px;
}

input::placeholder {
	font-family: 'Greycliff Arabic CF', sans-serif;
}