/* =========================
   로그인 화면
========================= */

.login-screen {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.login-box {
  width: 320px;
  padding-top: 70px;
}

.login-box h1 {
  font-size: 20px;
  margin-bottom: 20px;
}

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

.login-input {
  height: 42px;
  padding: 0 14px;

  border: 1px solid #cfd6dc;

  font-size: 14px;
  box-sizing: border-box;
}

.login-options {
  display: flex;
  gap: 14px;

  font-size: 12px;
  color: #9aa1a8;
}

.login-button {
  height: 42px;

  border: none;
  background-color: #52aead;
  color: white;

  cursor: pointer;
}

.account-links {
  display: flex;
  justify-content: center;
  gap: 10px;

  margin-top: 18px;

  font-size: 11px;
}

.account-links a {
  color: #a5abb0;
  text-decoration: none;
}

.account-links span {
  color: #dddddd;
}

.social-login-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 50px;
  width: 100%;
}

.guest-button {
  -webkit-appearance: none;  /* ⭕️ Safari/모바일 기본 버튼 스타일 강제 제거 */
  -moz-appearance: none;
  appearance: none;

  width: 100%;
  height: 44px;              /* 아래 소셜 버튼 높이와 일치 */
  border-radius: 22px;
  border: 0;                 /* ⭕️ 외곽 테두리 찌꺼기 완전 제거 */
  outline: none;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #BDBDBD;       /* 단색 배경 지정 */
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;

  box-sizing: border-box;
}
.social-button {
  position: relative;

  width: 100%;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;
  background-color: white;

  font-size: 14px;
  color: #222;

  cursor: pointer;
  box-sizing: border-box;
}

.social-button img {
  position: absolute;
  left: 20px;

  width: 18px;
  height: 18px;

  object-fit: contain;
}

.google-login {
  border: 1px solid #333333;
}

.naver-login {
  border: 1px solid #03c75a;
}

.kakao-login {
  border: 1px solid #fae000;
}

.apple-login {
  border: 1px solid #000000;
}
