* {
	margin: 0;
    padding: 0;
	box-sizing: border-box;
}

body {
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Montserrat', sans-serif;
	height: 100vh;
	overflow: hidden;
}


h1 {
	font-weight: bold;
	margin: 0;
}

p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

span {
	font-size: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

#log_in {
	display: block;
	border-radius: 20px;
	border: 1px solid #920000;
	background-color: #920000;
	color: #FFFFFF;
	text-align: center;
	width: 50%;
	margin-top: 5px;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	}

form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

input {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}

.login_container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 385px;
    max-width: 100%;
    height: 420px;
}

#google{
    position: relative;
    top: 5px;
}
.line{
    display: inline-block;
    position: relative;
    margin-right :10px;
    margin-left :10px;
    top: 5px;
    width: 60px;
    height: 1px;
  }


.social-login_container {
	margin: 35px 0;
}

.social-login_container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}
.hover_change:hover{
    color: blue;
    font-weight:450;
}
@media screen and (max-width: 400px) {
	.login_container {
	  background-color: #fff;
	  border-radius: 10px;
	  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	  position: relative;
	  overflow: hidden;
	  width: 80%;
	  height: 450px;
	  
	}
	form {
	  background-color: #FFFFFF;
	  align-items: center;
	  padding: 0 20px;
	  margin-top: 20px;
	  height: 100%;
	  text-align: center;
	}
  
	#login_btn {
	  /* display: block; */
	  border-radius: 20px;
	  border: 1px solid #920000;
	  background-color: #920000;
	  color: #FFFFFF;
	  text-align: center;
	  /* width: 50%;
	  margin-left:25%; */
	  margin-top: 5px;
	  font-size: 12px;
	  font-weight: bold;
	  padding: 12px 45px;
	  letter-spacing: 1px;
	  text-transform: uppercase;
	  transition: transform 80ms ease-in;
	  }
  
  }