/* Start Login Box */
.container.login {
  min-height: calc(100vh - 303px)
}
.login-box {
  position: relative;
  margin: 80px auto;
  width: 600px;
  height: 540px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 6px var(--main-color);
}
.right {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 40px;
  width: 300px;
  height: 400px;
}
h1 {
  margin: 0 0 20px 0;
  font-weight: 300;
  font-size: 28px;
}
input[type="text"],
input[type="password"] {
  display: block;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 4px;
  width: 220px;
  height: 32px;
  border: none;
  border-bottom: 1px solid #aaa;
  font-family: "Almarai", sans-serif;
  font-size: 13px;
  transition: var(--main-transition);
}
input[type="text"]:focus,
input[type="password"]:focus {
  border-bottom: 2px solid var(--main-color);
  color: #16a085;
  transition: var(--main-transition);
  outline: none;
}
input[type="submit"] {
  margin: 30px;
  width: 120px;
  height: 40px;
  background: var(--main-color);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  transition: var(--main-transition);
  cursor: pointer;
  font-family: "Almarai", sans-serif;
  font-size: 16px;
}
input[type="submit"]:hover,
input[type="submit"]:focus {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: var(--main-transition);
}
.left {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  padding: 40px;
  width: 300px;
  height: 400px;
  background: url("https://goo.gl/YbktSj");
  background-size: cover;
  background-position: center;
  border-radius: 0 2px 2px 0;
}
.right .loginwith {
  display: block;
  margin-bottom: 40px;
  font-size: 28px;
  color: #fff;
  text-align: center;
}
button.social-signin {
  margin-bottom: 20px;
  width: 220px;
  height: 36px;
  border: none;
  border-radius: 2px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: var(--main-transition);
  cursor: pointer;
}
button.social-signin:hover,
button.social-signin:focus {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: var(--main-transition);
}
button.social-signin:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: var(--main-transition);
}
button.social-signin.facebook {
  background: #32508e;
}
button.social-signin.twitter {
  background: #55acee;
}
button.social-signin.google {
  background: #dd4b39;
}
/* End Login Box */

/* Start Footer */
.footer {
  padding-bottom: 20px !important;
}
/* End Footer */
