@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: top;
}

#loginBG {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #9c9c9c6d;
}

#loginWrap {
  position: relative;
  background-color: #4d9b62;
  border-radius: 10px;
  width: 500px;
  height: 270px;
  margin: 0 auto;
  top: 250px;
  color: rgb(255, 255, 255);
}

#loginWrap h4 {
  position: relative;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 30px;
  margin: 0 auto;
  margin-bottom: 20px;
  display: inline-block;
}
.fa-solid {
  font-size: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
form {
  margin: 60px auto;
  width: 24rem;
  /* background-color: blue; */
}

.form_group {
  position: relative;
  margin-bottom: 0.5rem;
}

label {
  display: block;
}

input {
  box-sizing: border-box;
  padding: 0.5rem;
  width: 100%;
  border: 1px solid #ddd;
}

button {
  width: 100%;
  padding: 0.5rem;
  background: #465f4d;
  color: white;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.logCnCl {
  cursor: pointer;
}
