/* 전체 배경 */
body {
  background-color: #0d1117;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* 중앙 정렬 */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

/* 카드 UI */
.card {
  background-color: #161b22;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* 입력창 */
input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background-color: #0d1117;
  border: 1px solid #30363d;
  color: white;
}

/* 버튼 */
button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background-color: #238636;
  border: none;
  color: white;
  cursor: pointer;
}

/* 결과 텍스트 */
p {
  margin-top: 15px;
  color: #58a6ff;
}