body {
	background: linear-gradient(to bottom right, #007bff, #6c757d);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card {
	border: none;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-control {
	border-radius: 10px;
}

.btn-primary {
	border-radius: 25px;
	width: 100%;
}

.alert {
	border-radius: 10px;
}

.btn-gradient {
	background: linear-gradient(to right, #007bff, #6c757d);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 10px 20px;
	font-size: 16px;
	width: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form-control::placeholder {
	text-align: center;
}

.form-group label {
	display: block;
	text-align: center;
}

.alert {
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	font-size: 1rem;
	max-width: 500px;
	margin: 10px auto;
}

.alert i {
	margin-right: 10px;
	font-size: 1.2rem;
	vertical-align: middle;
}

.alert .btn-close {
	position: absolute;
	top: 1px;
	right: 1px;
}