body {
  margin: 0;
  padding: 0;
  font-family: 'Pretendard', sans-serif;
  background-color: #f4f7fa;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
}

.login-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.login-card h1 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #222;
}

.login-subtext {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 14px;
  transition: all 0.2s ease;
}

.form {
  min-width: 100%;
}

.kakao-btn {
  background-color: #fee500;
  color: #3c1e1e;
}

.naver-btn {
  background-color: #1ec800;
  color: white;
}

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

.social-login-form { width: 100%; }
.social-login-btn { 
  border: 0; 
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}