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;
}

/*----------------- login -----------*/
.login {
	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);
}
.login__container {
	background-color: rgba(255, 255, 255, .1);
  box-shadow: -10px 10px 20px 5px rgba(0, 0, 0, .5);
	border: 2px solid white;
	border-radius: 40px;
	color: white;
	padding: 60px 68px 40px;
	min-height: 700px;
	width: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.login__container h2 {
  text-align: center;
}
.login__container--form {
	display: flex;
	flex-direction: column;
}
.login__container--remember-me {
	font-size: 14px;
	color: white;
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
.login__container--remember-me a {
	color: white;
	text-decoration: none;
}
.login__container--remember-me a:hover {
	text-decoration: underline;
}
.login__container--social-media > div {
	display: flex;
	align-items: center;
	font-size: 14px;
	margin-bottom: 10px;
}
.login__container--social-media > div > img {
	width: 30px;
	margin-right: 10px;
}
.login__container--register {
	font-size: 14px;
}
.login__container--register a {
	font-size: 16px;
	color: white;
	font-weight: bold;
	text-decoration: none;
}
.login__container--register a:hover {
	text-decoration: underline;
}
.input {
	background-color: transparent;
	color: white;
	border: 0px;
	border-bottom: 2px solid white;
	font-size: 16px;
	margin-bottom: 20px;
	padding: 0px 20px;
	outline: none;
	height: 50px;
}
::placeholder {
	color: white;
}
.button {
	background-color: rgba(255, 255,255, 0.2);
	border: none;
	border-radius: 25px;
	color: white;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	height: 50px;
	letter-spacing: 1px;
	margin: 10px 0px;
  outline: none;
}
.button:hover {
  box-shadow: -4px 4px 10px rgba(0, 0, 0, .5);
}

/*----------------- 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) {
  .login__container {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0px;
    width: 100%;
  }
  .footer div {
		display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer div a {
    margin-bottom: 10px;
  }
}
