html {
	scroll-behavior: smooth;
}

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

body {
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	background: #121212; /* fallback for old browsers */
	overflow-x: hidden;

	height: 100%;

	/* code to make all text unselectable */
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

/* Disables selector ring */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
	outline: none;
}

/* ########################################################## */

h1 {
	color: white;

	font-size: 35px;
	font-weight: 800;
}

.flex-container {
	width: 100vw;

	margin-top: 60px;

	display: flex;
	justify-content: center;
	align-items: center;
}

.content-container {
	width: 500px;
	height: auto;
}

.form-container {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 500px;
	height: auto;

	margin-top: 5px;
	padding-top: 20px;

	border-radius: auto;

	display: flex;
	justify-content: center;
	flex-direction: column;

	background: #1f1f1f;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.199);
}

.subtitle {
	font-size: 18px;

	color: rgba(177, 177, 177, 0.3);
}
.msg{

	font-size: 16px;

	text-align: center;
	position: center;
	color: rgba(255, 255, 255, 0.8);

	width: auto;

	transition: all 1s;
}
input {
	border: none;
	border-bottom: solid rgb(143, 143, 143) 1px;
	font-size: 18px;
	margin-bottom: 30px;

	background: none;
	color: rgba(255, 255, 255, 0.555);

	height: 35px;
	width: 300px;
}

.submit-btn {
	cursor: pointer;
	text-align: center;
	position: center;
	font-size: 25px;
	border: none;
	border-radius: 12px;

	box-shadow: 2px 2px 7px #38d39f70;

	background: #38d39f;
	color: rgba(255, 255, 255, 0.8);

	width: 120px;

	transition: all 1s;
}

.submit-btn:hover {
	color: rgb(255, 255, 255);
	text-align: center;
	position: center;
	box-shadow: none;
}
