@charset "utf-8";

.login-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width:1200px; */
  margin: 0 auto;
  /* background:#eee; */
  xxxheight: calc(100vh - 150px);
  /* header, footer 를 제외한 높이 */
  height: 100vh;
  padding: 0px 0px 0;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  xxxbackground: white;
  padding: 60px 40px;
  border-radius: 60px 20px;
  xxxbox-shadow: 1px 1px 40px #2c395e14;
  text-align: center;
}

.login-container.login-error {
  border-radius: 60px 20px;
  background: #fff;
  box-shadow: 1px 1px 40px #2c395e14;
}

.login-container h1 {
  font-size: 30px;
  font-weight: 600;
}

.login-container form {
  max-width: 400px;
  margin-top: 50px;
}

.login-container input {
  width: 100%;
  height: 70px;
  font-size: 14px;
  padding: 20px 0 20px 40px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 35px;
  background: #fff url(/img/id.png) no-repeat left 20px center !important;
}

.login-container input[type=password] {
  background: #fff url(/img/pw.png) no-repeat left 20px center !important;
}

.login-container input:focus {
  outline: none;
  border-color: #8daff9;
}

.login-container button {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  padding: 20px;
  background: linear-gradient(to right, #8eaff9, #a8a2f9);
  border: none;
  color: white;
  border-radius: 35px;
  cursor: pointer;
}

.login-container button:active {
  position: relative;
  top: 1px;
}

.login-container .help {
  text-align: left;
  margin-top: 20px;
  padding-top: 10px;
}

.login-container .help p {
  font-size: 12px;
  margin-bottom: 0;
  line-height: 150%;
}

.login-container .logo {
  width: 200px;
  margin-top: 50px;
}

@media screen and (max-width: 500px) {
  .login-flex {
    padding: 15px 15px 0;
  }

  .login-container {
    padding: 40px 20px;
  }

  .login-container h1 {
    font-size: 24px;
    font-weight: 700;
  }

  .login-container .help p {
    font-size: 10px;
  }
}