body {
	font-family: 'PT Sans', 'Iran Sans', sans-serif;
	font-style: normal !important;
	font-weight: normal !important;
	background: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
	direction: rtl;
}

.card {
	background: #222;
	width: 360px;
	padding: 24px;
	border-radius: 8px;
	text-align: center;
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-style: normal !important;
	font-weight: normal !important;
}

h1 {
	font-size: 20px;
	margin: 0 0 8px;
	color: #FFF;
}

p {
	font-size: 14px;
	color: #CCC;
	margin: 0 0 16px;
}

label {
	color: #CCC;
}

input,
label,
button {
	font-family: 'PT Sans', 'Iran Sans', sans-serif;
	font-style: normal !important;
	font-weight: normal !important;
}

input {
	outline: none !important;
	background-color: #454545;
	color: #F9F9F9;
}

a {
	text-decoration: none;
}

.slide {
	display: none;
	animation: fadeIn .4s ease;
}

.slide.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

label {
	font-size: 13px;
	display: block;
	margin-top: 12px;
	text-align: right;
}

input {
	width: 100%;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #ddd;
	margin-top: 4px;
	box-sizing: border-box;
	text-align: left;
	direction: ltr;
}

button {
	width: 100%;
	padding: 10px;
	margin-top: 16px;
	border: none;
	border-radius: 4px;
	background: #2563eb;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

button.secondary {
	background: #f59e0b;
}

.muted {
	font-size: 12px;
	color: #666;
	margin-top: 8px;
}

.error {
	font-size: 12px;
	color: #b91c1c;
	margin-top: 8px;
}

.success {
	font-size: 12px;
	color: #065f46;
	margin-top: 8px;
}

.center {
	margin: 0 auto;
}

.text-center {
	text-align: center;
}

.card-style {
	height: 200px;
}

.card-style-logo {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
}