* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgb(224, 236, 240);
  width: 100vw;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
#showcase {
  max-width: 900px;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#showcase .logo {
  padding: 20px;
}
#showcase .logo h1 {
  color: rgb(53, 82, 160);
  font-size: 65px;
}
#showcase .logo p {
  color: #333;
  font-size: 27px;
  margin: 10px 10px;
}
.login-menu {
  border-radius: 10px;
  height: 380px;
  background: white;
  width: 600px;

  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 6px grey, -2px -2px 6px grey;
}
hr {
  color: grey;
}

.login-menu div {
  width: 100%;
  margin-bottom: 20px;
}
.login-menu label {
  margin-right: 7px;
}

.login-menu input {
  text-align:left;
  /* border-left: 0;
  border-top: 0;
  border-right: 0; */
  border: 0.1px solid;
  background: white;
  width: 93%;
  height: 50px;
  font-size: 17px;
  border-radius: 5px;

}
.btn button {
  width: 93%;
  border: none;
  background: rgb(97, 97, 236);
  height: 50px;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.6s ease-in-out;
}

.btn button:hover {
  background: rgb(41, 41, 182);
  color: white;
}

.btn-green button {
  background: rgb(129, 194, 31);
  color: white;
  width: 60%;
  padding: 0px;
  font-weight: bold;
}
.btn-green button:hover {
  background: rgb(80, 110, 19);
}
a {
  text-decoration: none;
  color: rgb(109, 109, 245);
}

/* footer */
#foot {
  position: relative;
  left: 0;
  bottom: 0;
  height: 150px;
  background: white;
  color: gray;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#foot h3 {
  /* position: absolute; */
  font-size: 12px;
}
#foot p {
  position: absolute;
  color: #333;
  top: 110px;
}
@media (min-width: 380px) and (max-width: 965px) {
  #showcase {
    flex-direction: column;
  }
  .login-menu {
    position: absolute;
    top: 210px;
    width: 400px;
  }
  #showcase .logo p {
    margin: 10px 0 0 0;
  }
}
@media (max-width: 379px) {
  #showcase .logo {
    padding: 2px;
  }
  #showcase .logo h1 {
    position: absolute;
    top: 60px;
    left: 12%;
    font-size: 35px;
  }
  #showcase .logo p {
    position: absolute;
    top: 90px;
    left: 12%;

    font-size: 17px;
  }
  .login-menu {
    position: absolute;
    top: 180px;
    left: 10%;
    width: 250px;
  }
}
