/* 로그인 폼 */
.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-box {
  width: 100%;
  max-width: 360px;
  height: 50px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid var(--gray2);
  border-radius: 1rem;
}

.login-btn {
  width: 100%;
  max-width: 360px;
  height: 50px;
  background-color: var(--red);
  color: #fff;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}

.help-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

/* 간편 로그인 */
.social-login {
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.simple-login-text {
  color: #666;
  margin-bottom: 10px;
}

.sns-login {
  width: 100%;
  height: 4.6rem;
  font-size: 16px;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
}

.kakao {
  background-color: #f9db00;
}

.naver {
  background-color: #03c75a;
  color: var(--white);
}

.apple {
  border: 1px solid #ddd;
}

/* 회원가입 */
.signup {
  text-align: center;
  cursor: pointer;
}
