* {
  box-sizing: border-box;
}
body {
  margin:0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#666888;
}
.login-div {
  width: 100vw;
  height: 100vh;
  background: #ffe9d2;
  box-shadow: inset 8px 8px 30px #939393,
              inset -8px -8px 10px #ffffff;
}
.logo {
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 4rem auto;
  margin-bottom: 2rem;
  box-shadow: 
  /* logo shadow */
  0px 0px 2px #5f5f5f,
  /* offset */
  0px 0px 0px 5px #ecf0f3,
  /*bottom right */
  8px 8px 15px #a7aaaf,
  /* top left */
  -8px -8px 15px #ffffff
  ;
}
.title {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  padding-top: 5px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0px #b1b1b1,
              -1px -1px 0px #ffffff;
}
.sub-title {
  text-align: center;
  font-size: 8px;
  padding-top: 15%;
  letter-spacing: 0.5px;
}
.fields {
  margin: 10px, auto;
  width: 100%;
  padding: 5px 38px 5px 38px;
}
.fields input {
  border: none;
  outline:none;
  background: none;
  font-size: 14px;
  color: #555;
  padding: 10px;
}
.pass-input {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: inset 5px 5px 5px #cbced1,
              inset -5px -5px 5px #ffffff;
}
.format{
  padding: 10px 11px;
  width:100%;
  display: flex;
  justify-content: center;
}
.remember-me{
  position: relative;
  top: 3px;
}
input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  bottom: 1px;
}

.signin-button {
  align-content: center;
  margin-top: 10px;
  margin-left: 30%;
  margin-right: 30%;
  width: 40%;
  height: 30px;
  outline: none;
  border:none;
  cursor: pointer;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  color:#fff;
  text-align: center;
  background: #ff8816;
  box-shadow: 2px 2px 2px #b1b1b1,
              -2px -2px 4px #ffffff;
  transition: 0.5s;
}
.signin-button:hover {
  background:#2fdbb6;
}
.signin-button:active {
  background:#1da88a;
}
.link {
  margin-top: 12px;
  padding-top: 5px;
  text-align: center;
}
.link a {
  padding: 4vw;
  text-decoration: none;
  color:#777;
  font-size: 12px;
}
.checkbox {
  margin: 20px 20%;
}
footer {
  margin-top: 20vh;
}


.toast {
	-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

#toast-container {
	display: block;
	position: fixed;
	z-index: 10000;
}
@media only screen and (max-width: 600px) {
	#toast-container {
		min-width: 100%;
		bottom: 0%;
	}
}
@media only screen and (min-width: 601px) and (max-width: 992px) {
	#toast-container {
		left: 5%;
		bottom: 7%;
		max-width: 90%;
	}
}
@media only screen and (min-width: 993px) {
	#toast-container {
		top: 10%;
		right: 7%;
		max-width: 86%;
	}
}

.toast {
	border-radius: 2px;
	top: 35px;
	width: auto;
	margin-top: 10px;
	position: relative;
	max-width: 100%;
	height: auto;
	min-height: 48px;
	line-height: 1.5em;
	background-color: #323232;
	padding: 10px 25px;
	font-size: 1.1rem;
	font-weight: 300;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	cursor: default;
}
.toast .toast-action {
	color: #eeff41;
	font-weight: 500;
	margin-right: -25px;
	margin-left: 3rem;
}
.toast.rounded {
	border-radius: 24px;
}
@media only screen and (max-width: 600px) {
	.toast {
		width: 100%;
		border-radius: 0;
	}
}
#toast-container {
  top: 1%;
  right: auto !important;
  bottom: auto !important;
  left:auto !important; 
}

.toast {
  background-color: #ca3119;
	font-size: 110%;
}