.error_icon {
  position: absolute;
  top: 40px;
  right: 8px;
  color: red;
  /* padding-left:30px; */
}

.side_error_msg {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 400px;
}

.register-form {
  display: grid;
  grid-gap: 20px;
}

@media (min-width: 768px) {
  .register-form {
    grid-template-columns: calc(100%);
  }
}

@media only screen and (min-width: 1024px) {
  .top_callout::before {
    z-index: 1000;
    left: -21px;
    top: 20px;
    border-right: 10px solid #fd5555;
  }

  .register-form {
    grid-template-columns: repeat(2, calc(50%));
  }
}

@media only screen and (max-width: 1024px) {
  .top_callout::before {
    right: 5px;
    z-index: 1;
    top: -20px;
    border-bottom: 10px solid #fd5555;
  }
}

