* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #202124;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 18vh;
}

.logo {
  width: 220px;
}

.search-wrapper {
  width: 90%;
  max-width: 600px;
}

input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  font-size: 16px;
  border-radius: 24px;
  border: 1px solid #dfe1e5;
  outline: none;
}

input:focus {
  border-color: #4285f4;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

button {
  height: 44px;
  padding: 0 20px;
  border-radius: 0 24px 24px 0;
  border: 1px solid #dfe1e5;
  border-left: none;
  background: #f8f9fa;
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  background: #f1f3f4;
}

.status {
  margin-top: 16px;
  font-size: 13px;
  color: #5f6368;
}

.answer {
  margin-top: 32px;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-wrap;
}

