.wrap {
  display: flex;
  justify-content: center;
}

.form-area {
  padding-top: 231px;
  width: 640px;
  height: 618px;
}

.form-logo-area {
  text-align: center;
}

.form-logo {
  width: 396px;
  height: 132px;
  margin-bottom: 24px;
}

.login-signup-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-label {
  color: #1f2937;
  font-weight: 700;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
}

.form-input {
  height: 56px;
  background-color: var(--gray100);
  border-radius: 12px;
  font-size: 16px;
  line-height: 26px;
  border: none;
  color: var(--gray800);
  padding-left: 20px;
}

.form-input-area {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visibility-img {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
}

.form-btn {
  padding: 16px 124px;
  border-radius: 40px;
  height: 56px;
  font-weight: 600;
  font-size: 20px;
  place-items: center;
}

.easy-login-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e6f2ff;
  padding: 16px 23px;
  margin-bottom: 10px;
  height: 74px;
  box-sizing: border-box;
  border-radius: 8px;
}

.easy-login-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--gray800);
  font-weight: normal;
}

.easy-login-btns {
  display: flex;
  gap: 16px;
}

.google-btn-area,
.kakao-btn-area {
  width: 42px;
  height: 42px;
  display: inline-block;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-btn-area {
  background-color: white;
}

.kakao-btn-area {
  background-color: yellow;
}

.hint-message-area {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.hint-message {
  line-height: 24px;
  color: #1f2937;
}

.go-link {
  color: var(--blue);
  line-height: 100%;
}

.form-btn:disabled {
  background-color: var(--gray400);
}

@media screen and (max-width: 767px) {
  .form-logo {
    width: 198px;
    height: 66px;
  }
  .wrap {
    max-width: 400px;
    margin: 0 auto;
  }
  .form-area {
    padding: 231px 16px;
  }
}
