body {
  font-family: 'Noto Sans KR', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f5f5f5;
  margin: 0;
}

.login-box {
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 25px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.login-box h2 {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 25px;
  font-size: 20px;
}

.login-box input {
  width: 96%;
  padding: 12px;
  padding-right:0px;
  margin: 8px 0px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f0f4ff;
  font-size: 14px;
}

.password-box {
  position: relative;
  width: 96%;
}

.password-box input {
  padding-right: 0px;
  width: 100%;
}

.password-box .toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #666;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: #9c27b0;
  color: #fff;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #7b1fa2;
}

.login-links {
  margin: 15px 0;
  font-size: 13px;
  color: #444;
}

.login-links a {
  margin: 0 5px;
  color: #444;
  text-decoration: none;
}

.social-login {
  margin-top: 15px;
}

.social-login p {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
}

.password-box .toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.password-box .toggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.divider-login{
  height: 25px;
  background-color: #ffffff;
}

.login-logo{
  width:150px;
  height:auto;
}