.auth-container {
  max-width: 640px;
  margin: 0 auto;
}

.logo-wrapper {
  display: block;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.logo-wrapper img {
  width: 396px;
  max-width: 100%;
  margin: 0 auto;
}

.input-item {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.input-item label {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.input-item input {
  padding: 16px 24px;
  background-color: var(--gray-100);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
}

.input-item input::placeholder {
  color: var(--gray-400);
  font-size: 16px;
  line-height: 24px;
}

.input-item input:focus {
  outline-color: var(--primary-100);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.toggle-password img {
  width: 24px;
  height: 24px;
}

/* 소셜 로그인 */
.social-login-container {
  background-color: #e6f2ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 23px;
  margin: 24px 0;
}

.social-login-container h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

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

.social-btn {
  display: inline-block;
}

.social-btn img {
  width: 42px;
  height: 42px;
}

/* 로그인/회원가입 전환 */
.auth-switch {
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}

.auth-switch a {
  color: #3182f6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
