body {
	font-family: "Montserrat", sans-serif;
	background: #121212;
	color: #eaeaea;
}
h1,
h2,
h3,
label {
	font-weight: 600;
}
button {
	transition: all 0.3s ease-in-out;
	color: #ffffff;
	border: 2px solid #f39200;
	box-shadow: 0 4px 10px rgba(243, 146, 0, 0.2);
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: bold;
	width: 100%;
}
button:hover {
	background: linear-gradient(90deg, #f39200, #e67e00);
	box-shadow: 0px 6px 20px rgba(243, 146, 0, 0.4);
	transform: scale(1.05);
}
button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background: linear-gradient(90deg, #e67e00, #cc6900);
	transform: none;
	color: snow;
}
.fade-in {
	animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
input:focus,
button:focus {
	outline: none;
}
input:hover,
input:focus {
	transition: all 0.3s ease-in-out;
	background: #222;
	border-color: #f39200;
	transform: scale(1.02);
}
.animated-otp {
	animation: slideIn 0.5s ease-out;
}
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
#notification-box {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
