@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

:root {
	--font-color: #7E7E7E;
	--gray-light: #EDEBE9;
	--gray-border: #DEE2E6;
}

body {
	font-family: "Poppins", sans-serif;
	display: flex;
	justify-content: center; 
	align-items: center; 
	height: 100vh; 
	margin: 0; 
	background-color: var(--gray-light);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

a { 
	text-decoration: none; 
	color: var(--font-color);
	white-space: nowrap; 
	font-size: 1rem; 
	padding: 0.45rem 2rem 0.45rem 0.5rem;
}

input {
	width: 250px !important;
	height: 60px !important;
}

.custom-btn { border: 1px solid var(--gray-border); }
.inline-message { min-height: 1.5rem; }

.eye-button {
	border: none;
	background-color: transparent;
	padding: 0.25rem 0.5rem;
}

.eye-button:focus {
	box-shadow: none;
	outline: none;
	border: none;
}