html, body {
  height: 100%;
}
body {
	margin: 0px;
	font-family: arial;
}

/*----------------- header -----------*/
.header {
	background: rgba(33,192,139);
	box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, .5);
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__img {
	width: 250px;
}

/*----------------- register -----------*/
.register {
	background: linear-gradient(rgba(33,192,139) 40%, rgba(171,136,255) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0px 30px;
	min-height: calc(100vh - 200px);
}
.register__container {
	border: 2px solid white;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: -10px 10px 20px 5px rgba(0, 0, 0, .5);
	width: 300px;
	min-height: 700px;
	border-radius: 40px;
	padding: 60px 68px 40px;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}
.register__container--form {
	display: flex;
	flex-direction: column;
	height: 500px;
	width: 100%
}
.input {
	border: 0px;
	border-bottom: 2px solid white;
	background: transparent;
	color: white;
	font-size: 16px;
	margin-bottom: 20px;
	padding: 0px 20px;
	height: 50px;
	font-size: 16px;
	outline: none;
}
.button {
	color: white;
	background: rgba(255, 255, 255, .2);
	border: none;
	border-radius: 25px;
	height: 50px;
	font-size: 16px;
	font-weight: bold;
	outline: none;
	cursor: pointer;
	margin: 10px 0;
	letter-spacing: 1px;
}
.button:hover {
  box-shadow: -4px 4px 10px rgba(0, 0, 0, .5);
}
::placeholder {
	color: white;
}
.register__container a {
	text-decoration: none;
	color: white;
}
.register__container a:hover {
	text-decoration: underline;
}

/*----------------- footer -----------*/
.footer {
	background-color: rgba(171,136,255);
	display: flex;
  justify-content: space-between;
	align-items: center;
	height: 100px;
	width: 100%;
}
.footer a {
	color: white;
	cursor: pointer;
	font-size: 14px;
	padding-left: 30px;
	text-decoration: none;
}
.gitLink {
  padding-right: 30px;
}
.footer a:hover {
	text-decoration: underline;
}

/*----------------- responsive -----------*/
@media only screen and (max-width: 500px) {
  .register__container {
    background-color: transparent;
    box-shadow: none;
    border: none;
    width: 100%;
    padding: 0px;
  }
  .footer div {
		display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer div a {
    margin-bottom: 10px;
  }
}
