@charset "UTF-8";

@import url("reset.css");
@import url("font.css");

/* ========================================================================== 
   auth
   ========================================================================== */
body {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}
.login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 3.2rem;
  height: 100vh;
  background-color: #FCFCFC;
}
.login-wrap .logo-box {
	flex-shrink: 0;
  width: 28rem;
  height: auto;
}
.login-wrap .logo-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.login-wrap .input-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40rem;
  padding: 1.4rem 1.6rem 1.4rem 4rem;
  border-radius: 0.8rem;
  border: 1px solid #CECFD0;
  background: #FFF;
}
.login-wrap .helper-text {
  display: none;
  position: relative;
  margin-top: 0.8rem;
  padding-left: 2.2rem;
  color: #EF4444;
  font-family: "SUIT Variable";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.login-wrap .helper-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url('../images_wynd/auth/icon_info.png') no-repeat center center / 100% 100%;
}
.login-wrap .status-text {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  max-width: 40rem;
  min-height: 5.8rem;
  margin-top: 2.4rem;
  padding: 1rem 0.8rem 1rem 4rem;
  color: #FFF;
  font-family: "SUIT Variable";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.45;
  border-radius: 0.8rem;
  border: 1px solid #2563EB;
  background-color: #143681;
}
.login-wrap .status-text::before {
  content: '';
  position: absolute;
  left: 1.6rem;
  top: 50%;
  /* top: 2.1rem; */
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: url('../images_wynd/auth/icon_secret_white.png') no-repeat center center / 100% 100%;
}
.login-wrap .input-box + .input-box {
  margin-top: 1rem;
}
.login-wrap .input-box.focus {
  border-color: #2563EB;
}
.login-wrap .input-box.error {
  border-color: #EF4444;
}
.login-wrap .input-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: url('../images_wynd/auth/icon_user_gray.png') no-repeat center center / 100% 100%;
}
.login-wrap .input-box.focus::before {
  background-image: url('../images_wynd/auth/icon_user_blue.png');
}
.login-wrap .input-box.error::before {
  background-image: url('../images_wynd/auth/icon_user_red.png');
}
.login-wrap .input-box.pw-box::before {
  background-image: url('../images_wynd/auth/icon_secret_gray.png');
}
.login-wrap .input-box.pw-box.focus::before {
  background-image: url('../images_wynd/auth/icon_secret_blue.png');
}
.login-wrap .input-box.pw-box.error::before {
  background-image: url('../images_wynd/auth/icon_secret_red.png');
}
.login-wrap .input-box label {
  flex-grow: 1;
}
.login-wrap .input-box input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  color: #1D1D1D;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.45;
}
.login-wrap .input-box input::placeholder {
  font-size: 1.6rem;
  color: #696969;
  line-height: 1.45;
}
.login-wrap .input-box button {
  width: 3rem;
  height: 3rem;
  background: no-repeat center center / 100% 100%;
}
.login-wrap .input-box button.btn-input-delete {
  background-image: url('../images_wynd/auth/icon_x_circle.png');
}
.login-wrap .input-box button.btn-show-pw {
  background-image: url('../images_wynd/auth/icon_eye.png');
}
.login-wrap .input-box input:-webkit-autofill,
.login-wrap .input-box input:-webkit-autofill:hover,
.login-wrap .input-box input:-webkit-autofill:focus,
.login-wrap .input-box input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    background-color: #454545 !important;
}

.wrap:not(.find-pw-wrap) .btn-login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 6.4rem;
    margin-top: 2.4rem;
    padding: 1.2rem 1.6rem;
    color: #fff;
    font-family: "SUIT Variable";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.45;
    border-radius: 0.8rem;
    background-color: #2563EB;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  margin-top: 2rem;
}
.login-options * {
  color: #828282;
  font-family: "SUIT Variable";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.login-options .checkbox {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
}
.login-options .checkbox input {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0;
  appearance: none;
  background: url('../images_wynd/auth/icon_rect.png') no-repeat center center / 100% 100%;
}
.login-options .checkbox input:checked {
  background-image: url('../images_wynd/auth/icon_rect_checked.png');
}

.btn-move-join {
  display: block;
  margin-top: 2.4rem;
  color: #2563EB;
  text-align: center;
  font-family: "SUIT Variable";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.join-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 26.4rem;
  height: 100vh;
  background-color: #2563EB;
}
.join-wrap .logo-box {
  width: 32rem;
  height: auto;
}
.join-wrap .logo-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.join-wrap .form-box {
  display: inline-flex;
  width: 49.6rem;
  padding: 4.8rem;
  flex-direction: column;
  gap: 2.4rem;
  border-radius: 1.6rem;
  background-color: #fff;
}
.join-wrap .form-box .title {
  padding: 0.4rem 0.4rem 1.2rem 0.4rem;
    padding-bottom: 0.8rem;
    color: #2563EB;
    text-align: left;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.12px;
    border-bottom: 1px solid #CECFD0;
    font-family: "SUIT Variable";
}
.join-wrap .page-box {
	display: flex;
    overflow: hidden;
    width: 100%;
}
.join-wrap .page-box .page-1,
.join-wrap .page-box .page-2 {
	width: 100%;
}
.join-wrap .page-2 {
  display: none;
}
.join-wrap .input-box.error input {
  border-color: #EF4444;
}
.join-wrap .input-box + .input-box {
  margin-top: 1.6rem;
}
.join-wrap .label-group .label-box {
    position: relative;
    display: block;
    margin: 0.8rem 0;
}
.join-wrap .label-group .label {
    position: relative;
    color: #1D1D1D;
    font-family: "SUIT Variable";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.45;
}
.join-wrap .label-group .label::after {
    content: '*';
    color: #2563EB;
    font-family: "SUIT Variable";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.45;
    vertical-align: text-bottom;
}
.join-wrap .label-group input {
    display: block;
    width: 100%;
    padding: 1.8rem 1.6rem;
    border-radius: 0.8rem;
    border: 1px solid #CECFD0;
    background: #fff;
    box-sizing: border-box;
}
.join-wrap .input-box .btn-box {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.join-wrap .input-box button {
    width: 3rem;
    height: 3rem;
    background: no-repeat center center / 100% 100%;
}
.join-wrap .input-box button.btn-input-delete {
    background-image: url('../images_wynd/auth/icon_x_circle.png');
}
.join-wrap .input-box button.btn-show-pw {
    background-image: url('../images_wynd/auth/icon_eye.png');
}
.join-wrap .label-group input::placeholder {
    color: #696969;
    font-family: "SUIT Variable";
    font-size: 1.6rem;
    line-height: 1.45;
}
.join-wrap .input-box input:-webkit-autofill,
.join-wrap .input-box input:-webkit-autofill:hover,
.join-wrap .input-box input:-webkit-autofill:focus,
.join-wrap .input-box input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    background-color: #454545 !important;
}
.join-wrap .input-box.focus .label-group input {
  outline: none;
  border: 1px solid #2563EB;
}
.join-wrap .helper-text {
  display: none;
  position: relative;
  padding-left: 2.2rem;
  color: #EF4444;
  font-family: "SUIT Variable";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.join-wrap .helper-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url('../images_wynd/auth/icon_info.png') no-repeat center center / 100% 100%;
}
.join-wrap .input-box.error .helper-text:not(.confirm-text) {
  display: block;
}
.join-wrap .helper-text.confirm-text {
  display: none;
}
.join-wrap .input-box.success .confirm-text {
  display: block;
  color: #2563EB;
}
.join-wrap .form-box .btn-next {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.4rem 0 1.6rem auto;
  padding: 1.2rem 2.4rem;
  color: #fff;
  border-radius: 0.8rem;
  background-color: #2563EB;
}
.join-wrap .input-box + .btn-box {
  display: flex;
  justify-content: flex-end;
  column-gap: 0.8rem;
  margin-top: 2.4rem;
  margin-bottom: 6.8rem;
}
.join-wrap .form-box .btn-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  color: #fff;
  border-radius: 0.8rem;
  border: 1px solid #A0A2A3;
  background-color: #A0A2A3;
}
.join-wrap .form-box .btn-join {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  color: #fff;
  border-radius: 0.8rem;
  border: 1px solid #2563EB;
  background-color: #2563EB;
}
.join-wrap .auth-notice {
  color: #828282;
  font-family:  "SUIT Variable";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.join-wrap .auth-notice .page-login {
  margin-left: 0.8rem;
  color: #2563EB;
  font-family: "SUIT Variable";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.find-pw-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 26.4rem;
  height: 100vh;
  background-color: #2563EB;
}
.find-pw-wrap .logo-box {
  width: 32rem;
  height: auto;
}
.find-pw-wrap .logo-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.find-pw-wrap .form-box {
  display: inline-flex;
  width: 49.6rem;
  padding: 4.8rem;
  flex-direction: column;
  gap: 2.4rem;
  border-radius: 1.6rem;
  background-color: #fff;
}
.find-pw-wrap .form-box .title {
  padding: 0.4rem 0.4rem 1.2rem 0.4rem;
    padding-bottom: 0.8rem;
    color: #2563EB;
    text-align: left;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.12px;
    border-bottom: 1px solid #CECFD0;
    font-family: "SUIT Variable";
}
.find-pw-wrap .input-box.error input {
  border-color: #EF4444;
}
.find-pw-wrap .input-box + .input-box {
  margin-top: 1.6rem;
}
.find-pw-wrap .label-group .label-box {
    position: relative;
    display: block;
    margin: 0.8rem 0;
}
.find-pw-wrap .label-group .label {
    position: relative;
    color: #1D1D1D;
    font-family: "SUIT Variable";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.45;
}
.find-pw-wrap .label-group .label::after {
    content: '*';
    color: #2563EB;
    font-family: "SUIT Variable";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.45;
    vertical-align: text-bottom;
}
.find-pw-wrap .label-group input {
    display: block;
    width: 100%;
    padding: 1.8rem 1.6rem;
    border-radius: 0.8rem;
    border: 1px solid #CECFD0;
    background: #fff;
    box-sizing: border-box;
}
.find-pw-wrap .input-box .btn-box {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.find-pw-wrap .input-box button {
    width: 3rem;
    height: 3rem;
    background: no-repeat center center / 100% 100%;
}
.find-pw-wrap .input-box button.btn-input-delete {
    background-image: url('../images_wynd/auth/icon_x_circle.png');
}
.find-pw-wrap .input-box button.btn-show-pw {
    background-image: url('../images_wynd/auth/icon_eye.png');
}
.find-pw-wrap .label-group input::placeholder {
    color: #696969;
    font-family: "SUIT Variable";
    font-size: 1.6rem;
    line-height: 1.45;
}
.find-pw-wrap .input-box input:-webkit-autofill,
.find-pw-wrap .input-box input:-webkit-autofill:hover,
.find-pw-wrap .input-box input:-webkit-autofill:focus,
.find-pw-wrap .input-box input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    background-color: #454545 !important;
}
.find-pw-wrap .input-box.focus .label-group input {
  outline: none;
  border: 1px solid #2563EB;
}
.find-pw-wrap .helper-text {
  display: none;
  position: relative;
  padding-left: 2.2rem;
  color: #EF4444;
  font-family: "SUIT Variable";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.find-pw-wrap .helper-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url('../images_wynd/auth/icon_info.png') no-repeat center center / 100% 100%;
}
.find-pw-wrap .input-box.error .helper-text:not(.confirm-text) {
  display: block;
}
.find-pw-wrap .helper-text.confirm-text {
  display: none;
}
.find-pw-wrap .input-box.success .confirm-text {
  display: block;
  color: #2563EB;
}
.find-pw-wrap .form-box .btn-next {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.4rem 0 1.6rem auto;
  padding: 1.2rem 2.4rem;
  color: #fff;
  border-radius: 0.8rem;
  background-color: #2563EB;
}
.find-pw-wrap .input-box + .btn-box {
  display: flex;
  justify-content: flex-end;
  column-gap: 1.2rem;
  margin-top: 2.4rem;
}
.find-pw-wrap .form-box .btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  color: #2563EB;
  border-radius: 0.8rem;
  border: 1px solid #fff;
  background-color: #fff;
}
.find-pw-wrap .form-box .btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  color: #fff;
  border-radius: 0.8rem;
  border: 1px solid #2563EB;
  background-color: #2563EB;
}

.find-pw-end-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 26.4rem;
  height: 100vh;
  background-color: #2563EB;
}
.find-pw-end-wrap .logo-box {
  width: 32rem;
  height: auto;
}
.find-pw-end-wrap .logo-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.find-pw-end-wrap .form-box {
  display: inline-flex;
  width: 49.6rem;
  padding: 4.8rem;
  flex-direction: column;
  gap: 1.6rem;
  border-radius: 1.6rem;
  background-color: #fff;
}
.find-pw-end-wrap .form-box .icon-box {
  width: 5.4rem;
  height: 5.4rem;
  margin: 0 auto;
}
.find-pw-end-wrap .form-box .icon-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.find-pw-end-wrap .form-box .title {
  padding: 0.4rem;
  padding-bottom: 0.8rem;
  color: #2563EB;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.12px;
  border-bottom: 1px solid #CECFD0;
  font-family: "SUIT Variable";
}
.find-pw-end-wrap .form-box .complete-text {
  margin-bottom: 1.6rem;
  padding: 0.4rem;
  color: #303030;
  font-family: "SUIT Variable";
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
.find-pw-end-wrap .complete-text strong {
  font-weight: 700;
}
.find-pw-end-wrap .form-box .btn-move-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6.4rem;
  color: #2563EB;
  font-family: "SUIT Variable";
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  border-radius: 0.8rem;
  border: 1px solid #2563EB;
  background-color: #FFF;
}

.sign-up-end-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 26.4rem;
  height: 100vh;
  background-color: #2563EB;
}
.sign-up-end-wrap .logo-box {
  width: 32rem;
  height: auto;
}
.sign-up-end-wrap .logo-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.sign-up-end-wrap .form-box {
  display: inline-flex;
  width: 49.6rem;
  padding: 4.8rem;
  flex-direction: column;
  gap: 1.6rem;
  border-radius: 1.6rem;
  background-color: #fff;
}
.sign-up-end-wrap .form-box .icon-box {
  width: 5.4rem;
  height: 5.4rem;
  margin: 0 auto;
}
.sign-up-end-wrap .form-box .icon-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.sign-up-end-wrap .form-box .title {
  padding: 0.4rem;
  padding-bottom: 0.8rem;
  color: #2563EB;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.12px;
  border-bottom: 1px solid #CECFD0;
  font-family: "SUIT Variable";
}
.sign-up-end-wrap .form-box .complete-text {
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
  padding: 0.4rem;
  color: #303030;
  font-family: "SUIT Variable";
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
.sign-up-end-wrap .form-box .btn-move-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6.4rem;
  color: #2563EB;
  font-family: "SUIT Variable";
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  border-radius: 0.8rem;
  border: 1px solid #2563EB;
  background-color: #FFF;
}

.cng-pw-end-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 26.4rem;
  height: 100vh;
  background-color: #2563EB;
}
.cng-pw-end-wrap .logo-box {
  width: 32rem;
  height: auto;
}
.cng-pw-end-wrap .logo-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.cng-pw-end-wrap .form-box {
  display: inline-flex;
  width: 49.6rem;
  padding: 4.8rem;
  flex-direction: column;
  gap: 1.6rem;
  border-radius: 1.6rem;
  background-color: #fff;
}
.cng-pw-end-wrap .form-box .icon-box {
  width: 5.4rem;
  height: 5.4rem;
  margin: 0 auto;
}
.cng-pw-end-wrap .form-box .icon-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.cng-pw-end-wrap .form-box .title {
  padding: 0.4rem;
  padding-bottom: 1.2rem;
  color: #2563EB;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.12px;
  border-bottom: 1px solid #CECFD0;
  font-family: "SUIT Variable";
}
.cng-pw-end-wrap .form-box .complete-text {
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
  padding: 0.4rem;
  color: #303030;
  font-family: "SUIT Variable";
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
.cng-pw-end-wrap .form-box .btn-move-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6.4rem;
  color: #2563EB;
  font-family: "SUIT Variable";
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  border-radius: 0.8rem;
  border: 1px solid #2563EB;
  background-color: #FFF;
}




.cng-pw-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 26.4rem;
  height: 100vh;
  background-color: #2563EB;
}
.cng-pw-wrap .logo-box {
  width: 32rem;
  height: auto;
}
.cng-pw-wrap .logo-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.cng-pw-wrap .form-box {
  display: inline-flex;
  width: 49.6rem;
  padding: 4.8rem;
  flex-direction: column;
  gap: 2.4rem;
  border-radius: 1.6rem;
  background-color: #fff;
}
.cng-pw-wrap .form-box .title {
  padding: 0.4rem 0.4rem 1.2rem 0.4rem;
    padding-bottom: 0.8rem;
    color: #2563EB;
    text-align: left;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.12px;
    border-bottom: 1px solid #CECFD0;
    font-family: "SUIT Variable";
}
.cng-pw-wrap .input-box.error input {
  border-color: #EF4444;
}
.cng-pw-wrap .input-box + .input-box {
  margin-top: 1.6rem;
}
.cng-pw-wrap .label-group .label-box {
    position: relative;
    display: block;
    margin: 0.8rem 0;
}
.cng-pw-wrap .label-group .label {
    position: relative;
    color: #1D1D1D;
    font-family: "SUIT Variable";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.45;
}
.cng-pw-wrap .label-group .label::after {
    content: '*';
    color: #2563EB;
    font-family: "SUIT Variable";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.45;
    vertical-align: text-bottom;
}
.cng-pw-wrap .label-group input {
    display: block;
    width: 100%;
    padding: 1.8rem 1.6rem;
    border-radius: 0.8rem;
    border: 1px solid #CECFD0;
    background: #fff;
    box-sizing: border-box;
}
.cng-pw-wrap .input-box .btn-box {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.cng-pw-wrap .input-box button {
    width: 3rem;
    height: 3rem;
    background: no-repeat center center / 100% 100%;
}
.cng-pw-wrap .input-box button.btn-input-delete {
    background-image: url('../images_wynd/auth/icon_x_circle.png');
}
.cng-pw-wrap .input-box button.btn-show-pw {
    background-image: url('../images_wynd/auth/icon_eye.png');
}
.cng-pw-wrap .label-group input::placeholder {
    color: #696969;
    font-family: "SUIT Variable";
    font-size: 1.6rem;
    line-height: 1.45;
}
.cng-pw-wrap .input-box input:-webkit-autofill,
.cng-pw-wrap .input-box input:-webkit-autofill:hover,
.cng-pw-wrap .input-box input:-webkit-autofill:focus,
.cng-pw-wrap .input-box input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    background-color: #454545 !important;
}
.cng-pw-wrap .input-box.focus .label-group input {
  outline: none;
  border: 1px solid #2563EB;
}
.cng-pw-wrap .helper-text {
  display: none;
  position: relative;
  padding-left: 2.2rem;
  color: #EF4444;
  font-family: "SUIT Variable";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.cng-pw-wrap .helper-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url('../images_wynd/auth/icon_info.png') no-repeat center center / 100% 100%;
}
.cng-pw-wrap .input-box.error .helper-text:not(.confirm-text) {
  display: block;
}
.cng-pw-wrap .helper-text.confirm-text {
  display: none;
}
.cng-pw-wrap .input-box.success .confirm-text {
  display: block;
  color: #2563EB;
}
.cng-pw-wrap .input-box + .btn-box {
  display: flex;
  justify-content: flex-end;
  column-gap: 0.8rem;
  margin-top: 2.4rem;
}
.cng-pw-wrap .form-box .btn-cng-pw {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  color: #fff;
  border-radius: 0.8rem;
  border: 1px solid #2563EB;
  background-color: #2563EB;
}