body {
  font-family: 'Roboto', sans-serif;
  color: #252c32;
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

#root {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  display: flex;
  flex: 1;
  padding: 20px;
  justify-content: center;
}

.logo {
  height: 50px;
  margin-top: 0;
}

.content-container {
  height: 85vh;
  display: flex;
  flex-direction: column;
  max-width: 550px;
  margin: 0;
  gap: 24px;
}

.content-box {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  border: 1px solid #e2e8f0;
  padding: 16px;
  border-radius: 16px;
  color: #252c32;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.078px;
}

.content-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.content-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
}
