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

body {
	background: linear-gradient(
		90deg,
		rgba(2, 0, 36, 1) 0%,
		rgba(75, 14, 154, 1) 35%,
		rgba(0, 212, 255, 1) 100%
	);
	font-family: 'Poppins', sans-serif;
}

i {
	font-size: larger;
}

form {
	width: 25%;
	background: white;
	padding: 50px;
	border-radius: 20px;
	margin-top: 70px;
	text-align: center;
}

.btn-custom {
	width: 80%;
	border: none;
	border-radius: 50px;
	background: rgb(80, 89, 221);
	color: white;
}

.form-control {
	color: rgba(0, 0, 0, 0.87);
	border-bottom-color: rgba(0, 0, 0, 0.42);
	box-shadow: none !important;
	border: none;
	border-bottom: 1px solid;
	border-radius: 4px 4px 0 0;
}

h4 {
	font-size: 2rem !important;
	font-weight: 700;
}

.form-label {
	align-items: center;
	font-weight: 500 !important;
}

/* alerts */
.alert {
	padding: 0.375rem 0.75rem;
	margin-bottom: 1rem;
	border-color: transparent;
	border-radius: 20px;
}

.alert-danger {
	color: darkred;
	background: lightpink;
}

.alert-success {
	color: darkgreen;
	background: lightgreen;
}
