
.error-inner{
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.button{
  margin: 0 auto;
  display: inline-flex;
  font-size: 14px;
  height: 32px;
  color: #409eff;
  border-color: #409eff;
  background: #fff;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  padding: 8px 15px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  vertical-align: middle;
  align-items: center;
  user-select: none;

  &:hover{
    cursor: pointer;
    color: #fff;
    background-color: #409eff;
  }
}