@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: "Montserrat", sans-serif;
}

body {
	background: #0b002c;
	place-content: center;
	min-height: 100vh;
	align-items: center;
	display: flex;
	justify-content: center;

	transition: all 0.6s ease-in-out;
}

.card {
	margin: 0 auto;
	width: 50%;
	max-width: 350px;
	background-color: #f5f2ff;
	border-radius: 10px;
	padding: 2rem;
	align-items: center;
	text-align: center;
}

.card h2 {
	font-size: 1.5rem;
}

.card hr {
	width: 50px;
	height: 2px;
	outline: none;
	border: none;
	background-color: #0b002c;
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.card h3 {
	font-size: 1rem;
	font-weight: 600;
	margin: 2rem 0;
}

.display {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #faf9ff;
	color: #0b002c;
	padding: 1rem;
	border-radius: 5px;
}

.display input {
	width: 90%;
	height: 3rem;
	border-radius: 5px;
	border: none;
	outline: none;
	font-size: 1rem;
	background: none;
}

.display .bx {
	font-size: 1.5rem;
	color: #979797;
	cursor: pointer;
}

.card button {
	margin: 0 auto;
	outline: none;
	border: none;
	background-color: #0b002c;
	color: #f5f2ff;
	padding: 1.5rem;
	border-radius: 5px;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
}

button .bx {
	font-size: 1.5rem;
	margin-left: 5px;
}

@media screen and (max-width: 650px) {
	.card {
		margin: 0 auto;
		width: 90%;
		max-width: 60rem;
		background-color: #f5f2ff;
		border-radius: 10px;
		padding: 1rem;
		align-items: center;
		text-align: center;
	}
}
