.error_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 0 24px;
  box-sizing: border-box;
}

.error_container .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.error_container .wrapper .error_title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
.error_container .wrapper .error_contents {
  display: flex;
  justify-content: center;
  word-break: keep-all;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.error_container .btn_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.error_container .btn_wrapper a {
  padding: 8px 24px;
  border: 1px solid #000;
  border-radius: 12px;
  color: #fff;
  background-color: #000;
  font-size: 14px;
  font-weight: 400;
}

