input {
  border: none;
}

.form-control {
  padding: 0.3rem 0.75rem;
}
.form-control:focus {
  border-color: #999;
  box-shadow: none;
}
.wrap {
    width: 100%;
    position: relative;
}

.inner {
    width: 90%;
    max-width: 500px;
    margin: auto;
}

/*로그인*/

.login-wrap .login-input {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-bottom: 70px;
  border-bottom: 2px solid #e4e4e4;
  margin-bottom: 28px;
}
_input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 2px solid #c9c9c9;
  padding: 0 22px;
  box-sizing: border-box;
  background-color: aliceblue;
}
input::placeholder {
  color: var(--gray13);
}
.login-wrap .login-input .check-box {
  display: flex;
  gap: 46px;
}
.login-wrap .login-input .check-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.login-wrap .login-input .check-wrap input {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
}
.login-wrap .login-input .check-wrap label {
  font-size: 14px;
  font-weight: 500;
  color: #6c6c6c;
  padding-left: 25px;
}
.login-wrap .login-input .check-wrap input:checked {
  background: #c9c9c9;
}
.login-wrap .login-input button {
  width: 100%;
  height: 3.5rem;
  border: none;
  border-radius: 5px;
  background: #2d6aed;
  color: white;
  font-size: var(--font25);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
}
.login-wrap .login-btn {
  display: flex;
  gap: 20px;
}
.login-wrap .login-btn > li > a {
  font-size: 14px;
  text-decoration: underline;
  display: block;
}
.login-wrap .login-btn > li:nth-child(1) > a {
  color: #2d6aed;
}
.login-wrap .login-btn > li:nth-child(1) {
  position: relative;
}
.login-wrap .login-btn > li:nth-child(1)::before {
  content: "";
  width: 1px;
  height: 16px;
  background: #dfdfdf;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.login-wrap .customer-wrap {
  display: flex;
  justify-content: space-between;
}
.login-wrap .customer-wrap h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
.login-wrap .customer-wrap h3 span {
  font-weight: 300;
  color: #9d9d9d;
  margin-bottom: 12px;
}
.login-wrap .customer-wrap h2 {
  color: var(--black08);
  font-size: 1.9rem;
  font-weight: 700;
}
.login-wrap .customer-wrap .sns-btn {
  display: flex;
  gap: 13px;
}
.login-wrap .customer-wrap .sns-btn > li > a {
  display: block;
}
.login-wrap .customer-wrap .sns-btn > li > a img {
  width: 40px;
}

.login-wrap .copy {
  font-size: 0.9rem;
  text-align: center;
  color: gray;
  position: absolute;
  left: 50%;
  bottom: 9vh;
  transform: translateX(-50%);
}


/*아이디 비밀번호찾기*/
.find-wrap .form-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.find-wrap .input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.find-wrap .input-wrap .alert {
  font-size: var(--font14);
  color: var(--red01);
  position: absolute;
  left: 0;
  bottom: -28px;
}
.find-wrap .input-wrap.on input {
  border: 1px solid var(--red01);
  position: relative;
}
.find-wrap .input-wrap.on input {
  background: url("../img/icon/ic-alert.svg") calc(100% - 14px) center no-repeat;
  background-size: 24px;
}
.find-wrap .input-wrap p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black05);
}

.find-wrap .input-wrap .pass button {
  width: 140px;
  height: 50px;
  border: none;
  border-radius: 5px;
  background: var(--gray13);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.find-wrap .input-wrap .pass input {
  width: calc(100% - 150px);
}

.find-wrap button.submit {
  background: #2d6aed;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
}
.find-wrap .id-result {
  margin-top: 50px;
}
.find-wrap .id-result .id-find {
  width: 100%;
  padding: 58px 0;
  border-radius: 5px;
  border: 2px solid var(--gray08);
  font-size: 1.9rem;
  text-align: center;
  font-weight: 600;
}
.find-wrap .id-result .btn-wrap {
  display: flex;
  margin: 4rem 0;
  gap: 32px;
}
.find-wrap .id-result .btn-wrap a {
  width: 50%;
  height: 4rem;
  background: gray;
  color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.find-wrap .id-result .btn-wrap a:nth-child(2) {
  background: #2d6aed;
}
.find-wrap .id-result .pass-find {
  width: 100%;
  padding: 5rem 0;
  border-radius: 20px;
  border: 2px solid var(--gray08);
  text-align: center;
}
.find-wrap .id-result .pass-find img {
  width: 147px;
  margin: 0 auto 46px;
}
.find-wrap .id-result .pass-find p {
  font-size: var(--font25);
  font-weight: 700;
  line-height: 1.5;
}
.find-wrap .id-result .pass-find p span {
  font-size: var(--font22);
  font-weight: 400;
}
