body {
  /* body ¹è°æ ÀÌ¹ÌÁö´Â ±×´ë·Î À¯Áö */
  background: url('/resources/images/login/body.jpg') center/cover no-repeat, #f5f6fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Noto Sans KR', sans-serif;
  min-height: 100vh;
}
.login-container {
  /* ÆÄ½ºÅÚ °è¿­ ¹è°æ»ö ¿¹½Ã: ¿¬ÇÑ ¹ÎÆ®»ö */
  background: #e0f7fa;
  width: 400px;
  padding: 40px 30px 30px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.login-container::before {
  /* ¿À¹ö·¹ÀÌ Á¦°Å */
  display: none;
}
.login-container * {
  position: relative;
  z-index: 1;
}
.login-container h2 {
  text-align: ¤ÓLEFT;
  margin-bottom: 24px;
  color: #222;
}
.login-container input[type="text"],
.login-container input[type="password"] {
  width: 95%;
  padding: 12px;
  margin: 8px 0 16px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
.login-container .options {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.login-container .options input[type="checkbox"] {
  accent-color: #3b82f6;
}
.login-container .options label {
  margin-left: 6px;
  font-size: 14px;
  color: #3b82f6;
  cursor: pointer;
  font-weight: bold;
}
.error-message {
  color: #e53e3e;
  text-align: center;
  margin-bottom: 10px;
  display: none;
}
.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}
.button-group button,
.button-group a {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.partner-btn {
  background: #f59e42;
  color: white;
  font-weight: bold;
}
.partner-btn:hover {
  background: #ea7e1e;
}
.login-btn {
  background: #3b82f6;
  color: white;
  font-weight: bold;
  border: none;
}
.login-btn:hover {
  background: #2563eb;
}

.stylish-title {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
  background: linear-gradient(90deg, #b2ebf2 0%, #e0f7fa 100%);
  color: #1976d2;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(51, 102, 204, 0.08);
  padding: 18px 0 18px 0;
  margin-bottom: 28px;
  text-shadow: 0 2px 8px #b2ebf2;
  position: relative;
  overflow: hidden;
}
.stylish-title .icon {
  width: 36px;
  height: 36px;
  display: inline-block;
}
@media (max-width: 700px) {
  .stylish-title {
    font-size: 1.3rem;
    padding: 12px 0;
  }
  .stylish-title .icon {
    width: 26px;
    height: 26px;
  }
}
   