body {
	margin: 0;
	font-size: 20px;  
  font-family: 'Lato', Verdana, Geneva, Tahoma, sans-serif;
}

div.topbar {
	background-color: #333;
  display: flex;
  justify-content: flex-end;
  padding: 2px;
}

form {
  width: 450px;
  margin: 2px;
}
.input {
  display: flex;
  align-items: center;
}
.button {
  height: 24px;
  border: none;
}
#email {
  width: 75%;
  background: #FDFCFB;
  font-family: inherit;
  color: #737373;
  letter-spacing: 1px;
  text-indent: 5%;
  border-radius: 5px 0 0 5px;
}
#submit {
  width: 25%;
  height: 26px;
  background: #E86C8D;
  font-family: inherit;
  font-weight: bold;
  color: inherit;
  letter-spacing: 1px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background .3s ease-in-out;
  outline: none;
}
#submit:hover {
  background: #d45d7d;
}
input:focus {
  outline: 2px solid #E86C8D;
  box-shadow: 0 0 2px #E86C8D;
}

div#notification {
  height: 26px;
  text-align: center;
  color: #FDFCFB;
  display: none;
  border-radius: .25rem;
  margin: 2px 3px 2px 3px;
  position: relative;
  margin-bottom: 1rem;
}
div#notification.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  border: 1px solid #c3e6cb;
}
div#notification.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  border: 1px solid #f5c6cb;
}
div#notification.warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  border: 1px solid #ffeeba;
}

div.background { 
  background: url(../assets/std_bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
  height: 100vh;
}
div.fit{
	background: url(../assets/std_text_pc.png) no-repeat center bottom fixed; 
	background-repeat: no-repeat;
	background-size: contain;
  opacity:1;
  width: 100%;
  height: 96vh;
}
@media screen and (max-width: 630px) {
	div.background { 
		background: url(../assets/std_bg_mobile.jpg) no-repeat center center fixed;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    height: 100vh;
	}
	div.fit{
		background: url(../assets/std_text_mobile.png) no-repeat center bottom fixed;
		width: 100%;
		background-repeat: no-repeat;
		background-size: contain;
		opacity:1;
	}
}
