.alert-error {
    border-radius: 8px;
    padding: 15px;
    background-color: #ac040488; /* Red */
    color: white;
    margin-bottom: 15px;
  }
  
  /* The close button */
  .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: normal;
    float: right;
    font-size: 30px;
    line-height: 26px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  /* When moving the mouse over the close button */
 


  .alert_success {
    border-radius: 8px;
    padding: 15px;
    background-color: #04ac5898; /* Red */
    color: white;
    margin-bottom: 15px;
  }


  /****** Ошибки валидации*******/

  .li_errors {
    padding: 5px;
    & li {
        color: #8b0303d7;
        font-size: 12px;
    }
  }
  @media (hover: hover) {
    .closebtn:hover {
      color: black;
    }

  }

  @media (hover: none) {
    .closebtn:active {
      color: black;
    }
}