.error_container {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  .error_section {
    display: flex;
    align-items: center;
    gap: 48px;
    .error_img {
      width: 150px;
      height: 150px;
      object-fit: contain;
      background-color: var(--_gray-100);
      border-radius: 16px;
    }
    .error_text {
      display: flex;
      flex-direction: column;
      gap: 16px;
      h5 {
        font-size: 16px;
        color: var(--_primary-500);
        font-weight: normal;
      }
      .error_title {
        color: var(--_gray-900);
        font-size: 64px;
        font-weight: 800;
        line-height: 125%;
      }
      .error_subtitle {
        color: var(--_gray-900);
        font-size: 36px;
        font-weight: 400;
        line-height: 125%;
      }
      .error_description {
        color: var(--_gray-900);
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
      }
      .error_button {
        padding: 12px;
        border: 1px solid var(--_gray-200);
        border-radius: 4px;
        background-color: var(--_base-white);
        margin-top: 36px;
      }
    }
  }
}
