@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

:root {
	--color-primary: #ec4899;
	--off-white: #fce8f2;
}

body {
	padding-bottom: 8rem;
	margin: 0;
	background-color: white;
	font-family: "Montserrat", sans-serif;
}

.container {
	text-align: center;
	max-width: 300px;
	margin: 5rem auto;
	padding: 4rem;
	border: 1px solid var(--color-primary);
	margin-bottom: 0;
	border-radius: 0.5rem;
	background-color: var(--off-white);
}
label {
	display: block;
	margin: 1rem;
}
input {
	display: block;
	width: 100%;
	padding: 0.5rem;
	border: 1px solid var(--color-primary);
	border-radius: 0.25rem;
	box-sizing: border-box;
}
button {
	display: block;
	width: 70%;
	margin: 2rem auto;
	padding: 0.5rem;
	border: 1px solid var(--color-primary);
	border-radius: 0.25rem;
	cursor: pointer;
}
.p {
	width: 20%;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 3rem;

	color: grey;
	font-size: 1rem;
}
/* !All imported component here */
.navigation {
	background-color: var(--color-primary);
	color: white;
	border-bottom-left-radius: 2rem;
	border-bottom-right-radius: 2rem;
	padding: 0.5rem 1rem;
}
.nav-brand {
	font-weight: bold;
	font-size: 2rem;
}
.nav-pills {
	text-align: right;
}
.navigation .link {
	color: white;
}

.link-active {
	font-weight: bold;
}
.link {
	text-decoration: none;
}
.list-non-bullet {
	list-style-type: none;
	margin-block-start: 0;
	padding-inline-start: 0;
}
.list-on-one-line {
	white-space: nowrap;
	/* overflow-x: hidden; */
}
.list-item-inline {
	display: inline-block;
	margin-right: 1rem;
}

.footer {
	display: block;
	background-color: var(--color-primary);
	color: white;
	position: fixed;
	bottom: 0;
	width: 99%;
	margin: 0 auto;
	padding: 1rem;
	height: 5rem;
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
	text-align: center;
	border-top: solid 0.1rem white;
}
.footer .link {
	color: white;
	margin-top: 1rem;
}
.footer ul {
	padding-inline-start: 0;
}
.footer li {
	margin-top: 1rem;
}
.footer-heading {
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
}

/* !All imported component End here */
