@charset "utf-8";
/* -----------------------------------------------
	* 로그인 화면 스타일 정의
--------------------------------------------------
	- 최초 작성일 : 2021.08.15
	- 최초 작성자 : 아보카도
	- 최종 수정일 : 
	- 최종 수정자 : 
--------------------------------------------------*/

/****************************************************
	Login Style
****************************************************/

html,
body {
  height: 100%;
}
.loginWrap {
  display: table;
  width: 100%;
  height: 100%;
}
.login-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.login-logo {
  position: relative;
  top: 0;
  left: 50%;
  max-width: 1000px;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
  transform: translate(-50%, -200px);
}

.login-form-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-form-box .inner {
  padding: 30px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.login-form-box .inner form {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 110px;
  gap: 9px;
}

.input-icon-wrap {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
}

.icon-prefix {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.input-icon-wrap input {
  padding-left: 36px !important;
}

.button_2 {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 4px;
  cursor: pointer;
  margin-top: 10px;
}
