@import url('//fonts.googleapis.com/css?family=Roboto|Material+Icons');

html {
	height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  height: 100%;
  flex-direction: column;
}

body:after {
  font-family: 'Material Icons';
  content: 'star';
}

h1 {
	font-size: 1.2rem;
	font-weight: normal;
} 

button {
	margin: 0;
	padding: 8px 32px;
	margin-bottom: 20px;
	cursor: pointer;
	background: transparent;
	display: flex;
	border: 1px solid silver;
	border-radius: 8px;
	align-items: center;
}
button > span {
	margin-left: 30px;
}

.form-connect {
	display: flex;
	flex-direction: column;
    width: fit-content;
    align-self: center;
     margin: auto;
}
.checkbox {
	margin-bottom: 2rem;
}

.checkbox > input[type=checkbox] {
	width: 1rem;
	height: 1rem;
}

.checkbox > label {
	padding-left: 1rem;
}