@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* This pen */
body {
  font-family: "Ubuntu", sans-serif;
  font-size: 300;
  color: #ffffff;
 /* text-rendering: optimizeLegibility;*/
  font-weight: initial;
}

/* Buttons override */
.btn {
	text-transform: uppercase;
    font-weight: 600;
}
.btn-lg {
	padding: 15px 40px;
    font-size: 16px;
    line-height: none;
    border-radius: 10px;
}
.btn-red {
	background-color: #dd5138;
	color: #fff;
}

#password-check label {
	margin: 8px 0;
}

.valid {
	color: green;
}

.valid:before {
	position: relative;
	left: -10px;
	content: "✔";
}

.invalid {
	color: red;
}

.invalid:before {
	position: relative;
	left: -10px;
	content: "✖";
}