.auth-page {
  max-width: 640px;
  margin: 50px auto;
}

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

.auth-form {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  width: 100%;
  color: var(--gray900);
}

.auth-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--lightblue);
  height: 74px;
  border-radius: 8px;
  padding: 16px 23px;
  color: var(--gray900);
  font-weight: 500;
  margin: 24px 0;
}

.auth-switch {
  text-align: center;
}

.logo-img {
  display: flex;
  gap: 16px;
}

input {
  background-color: var(--gray100);
  border: none;
  border-radius: 12px;
  height: 56px;
  padding-left: 16px;
  font-size: 18px;
  width: 100%;
}

.input-box,
.password-wrapper,
.password-check-wrapper {
  margin: 16px 0 24px;
}

label {
  font-size: 18px;
  font-weight: 600;
}

.error-message {
  color: #f74747;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  margin-top: 8px;
  display: none;
  padding-left: 16px;
}

#auth-form_btn {
  background-color: var(--gray400);
  color: var(--gray100);
  border: none;
  border-radius: 40px;
  padding: 16px 124px 16px;
  font-size: 20px;
  font-weight: 600;
}

#auth-form_btn:hover {
  background-color: var(--blue);
}

#auth-form_btn:enabled {
  background-color: var(--blue);
  cursor: pointer;
}

.toggle-password {
  position: absolute;
  right: 24px;
  top: 16px;
  cursor: pointer;
}

.password-wrapper,
.password-check-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

input:focus {
  outline-color: var(--blue);
}

/*Mobile*/
@media screen and (min-width: 375px) and (max-width: 767px) {
  .auth-page {
    padding: 0 16px;
    max-width: 400px;
  }
  .auth-logo > img {
    max-width: 50%;
  }
  label,
  input {
    font-size: 14px;
  }
}

/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .auth-logo {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
