
body {
  overflow-x: hidden;
}

.login-wrapper {
  width: 100vw;
  padding-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 7px;
  padding: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.37);
  width: 350px;
  height: 430px;
}

.login-paum {
  display: flex;
  flex-direction: column;

  justify-content: center;
}

.login-paum .abriv {
  font-size: 45px;
}

.login-paum .full {
  font-size: 12px;
}

.login-logo a {
  text-decoration: none;
  color: var(--primary);
  display: flex;
}

.login-logo img {
  margin-top: 10px;
  width: 70px;
  height: 70px;
}

.login h2 {
  margin-top: 20px;
}

.login form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.input-group {
  width: 90%;
  position: relative;
}

.input-group input {
  width: 100%;
  border: 1.5px solid var(--primary);
  border-radius: 7px;
  height: 40px;
  padding-left: 52px;
}


.input-group .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px;
  background-color: var(--primary);
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
}

.eye-icon {
  position: absolute;
  top: 0;
  cursor: pointer;
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  right: 0;
  width: 40px;
}

.input-group .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--primary);
  border: none;
  border-radius: 7px;
  height: 40px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: ease 0.6s;
}

.input-group .btn:hover {
  background-color: var(--secondary);
}

.login-links {
  margin-top: 10px;
  width: 80%;
  display: flex;
  align-items: center;
}

.login-links a {
  text-decoration: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
  font-size: 0.9rem;
}

.login-links a:hover {
    color: var(--secondary);
}

.login-links a:nth-child(2) {
  margin-left: auto;
}

.error {
  color: red;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.d_error {
  padding: 1px 5px 1px 5px;
  font-size: large;
  display: none;
}