.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 640px;
}

.logo-auth-box {
  display: flex;
  justify-content: center;
}

.logo-auth-box a {
  margin: 0 auto;
  display: block;
  margin-top: 24px;
  margin-bottom: 24px;
}

.logo-auth-box img{
  width: 396px;
}

.group-input {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 40px;
}

.group-input label {
  color: var(--gray-800);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.group-input input {
  background-color: var(--gray-100);
  width: 100%;
  height: 56px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  vertical-align: middle;
  padding: 16px 24px;
  outline: none;
}

.input-font {
  font-size: 18px;
  color: var(--gray-800);
}

.inputPwd-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.inputPwd-wrap .toggle-password {
  width: 24px;
  position: absolute;
  right: 24px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.inputPwd-wrap img {
  width: 100%;
  border: none;
}

.login-btn {
  width: 100%;
  padding: 16px 124px;
  border-radius: 40px;
  border: none;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.social-login-wrap {
  width: 100%;
  height: 74px;
  border-radius: 8px;
  background-color: #e6f2ff;
  padding: 16px 23px;
  margin-top: 24px;
  gap: 10px;
  display: flex;
  justify-content: space-between;
}

.social-login-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--gray-800);
}

.social-login-wrap ul {
  display: flex;
  gap: 16px;
}

.social-login-wrap img {
  width: 42px;
  height: auto;
}

.sign-up-link {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.sign-up-link a {
  color: var(--blue-100);
  text-decoration: underline;
}

.input-font.error {
  border: 1px solid var(--red);
}

.input-font.success {
  border: 1px solid var(--blue-100);
}

.info-text {
  position: absolute;
  bottom: -20px;
  left: 16px;
  color: var(--red);
  font-size: 14px;
}

/* Mobile */
@media (max-width: 767px) {
  .main {
    max-width: 400px;
    padding: 0 16px;
    margin: 0 auto;
  }

  .logo-auth-box img {
    width: 198px;
  }
}