@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&family=Playwrite+DK+Loopet:wght@100..400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

html,
body {
  height: 100%;
  margin: 0;
}
body {
  background-image: url("../images/background.png");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.login_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login_container .main-label {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  transform: translateX(-30px) translateY(-5px);
}

.login_container .child-label {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  transform: translateX(60px) translateY(25px);
  position: absolute;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 390px;
  height: 220px;
  box-sizing: border-box;
  background-image: url("../images/17973908.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 1px rgb(54 54 54);
}
.input-group {
  position: relative;
  margin-bottom: 15px;
}
.input-group i {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  font-size: 15px;
  color: #8a8888;
}
.input-group input[type="text"],
.input-group input[type="password"] {
  width: 120%;
  height: 30px;
  border: none;
  border-bottom: 1px solid black;
  margin-left: -20%;
  padding-left: 40px;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 1px 1px 5px gray;
}
.input-group-showpass {
  margin-top: -6%;
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
}

button {
  width: 90%;
  background-color: #052846;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10%;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.1s ease-in-out;
  font-family: "Space Grotesk", sans-serif;
}
button:hover {
  background-color: rgb(124, 124, 124);
}
