#login {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 10%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  cursor: pointer;
  transition: .5s;
  z-index: 10000;
}

#login:hover {
  background: #00bcd4;
}

.overlay {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 100%;
  height: 100vh;
  background: #060c0c;
  transition: .5s;
  transform: scale(0);
  transform-origin: bottom right;
  border-radius: 50%;
  z-index: 20000;
}

.overlay.active {
  border-radius: 0;
  bottom: 0;
  right: 0;
  transform: scale(1);
}

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
  min-height: 300px;
  background: #0d0f58;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .5);
  padding: 40px 60px 60px;
  box-sizing: border-box;
}

.login .close {
  position: absolute;
  top: -20px;
  right: -20px;
  color: #fff;
  cursor: pointer;
  background: #e91e63;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  border: 4px solid #fff;
}

.icon {
  color: #fff;
  font-size: 80px;
  text-align: center;
}

.login h1 {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: 48px;
  text-transform: uppercase;
}

.login p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.login button {
  margin: 0;
  padding: 0;
  color: #37d344;
  background: none;
  font-size: 20px;
  font-weight: 300;
  border: none;
  outline: none;
  transition: .5s;
  cursor: pointer;
}

.login button:hover {
  color: #1875cc;
}

.login-form {
  position: relative;
  margin-top: 40px;
}

.login-form input[type="email"], .login-form input[type="password"], .login-form input[type="text"] {
  width: 100%;
  height: 60px;
  border-radius: 60px;
  border: none;
  outline: none;
  padding: 20px;
  padding-right: 200px;
  box-sizing: border-box;
  font-size: 24px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 300;
}

.login-form input[type="email"]::placeholder, .login-form input[type="password"]::placeholder, .login-form input[type="text"]::placeholder {
  color: rgba(255, 255, 255, .5);
}

.login-form input[type="submit"]{
  width: 200px;
  height: 60px;
  border-radius: 60px;
  border: none;
  outline: none;
  position: absolute;
  top: 60px;
  right: 0;
  background: #00bcd4;
  color: #fff;
  font-weight: 300;
  cursor: pointer;
  transition: .5s;
  font-size: 24px;
}

.login-form input[type="submit"]:hover {
  background: #2bbd37;
}

.sign_up {
  display: none;
}
