
/* Login Page Custom Styles */
.login-card {
  background: #fff;
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.btn-login {
  background: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #eee;
}

.divider span {
  background: #fff;
  padding: 0 15px;
  position: relative;
  color: #888;
  font-size: 14px;
}

/* Social Login Grid */
.social-login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
}

/* Brand Colors */
.naver { background-color: #03C75A; }
.kakao { background-color: #FEE500; color: #3C1E1E; }
.google { background-color: #df4930; }
.facebook { background-color: #1877F2; }

.social-btn:hover {
  opacity: 0.8;
  color: #fff;
}

.social-btn i {
  margin-right: 8px;
}