/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/buttons.css
 * @description: 버튼 스타일
 * @components: 기본 버튼
 * @usage: 버튼 요소의 스타일링
 */
button {
  padding: 10px 20px;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #1669c1;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(26, 115, 232, 0.2);
}

/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/buttons.css
 * @description: 로그인 버튼 스타일
 * @components: 로그인 버튼
 * @usage: 로그인 버튼 스타일링
 */
#loginBtn {
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 16px;
  padding: 6px 16px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s ease;
  height: 32px;
  min-width: 80px;
}

/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/buttons.css
 * @description: 버튼 그룹 스타일
 * @components: 버튼 그룹
 * @usage: 버튼 그룹 스타일링
 */
.button-group {
  display: inline-flex;
  flex-direction: column;
  min-width: 100px;
  margin: 3px;
}
