
.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999999;
  display:none;
}
.popup-form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,.6);
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 999999;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    height: 90%;
    overflow-y: auto;
}
.popup-form-container h6{
    color:#fff;
    border-bottom:1px solid #fff;
    padding-bottom:5px;
}
.popup-form-container label{
    display:block;
    color:#fff;
    margin-bottom:0;
    margin-top:10px;
    margin-bottom:5px;
}
.popup-form-container input,.popup-form-container textarea,.popup-form-container select{
    width:100%;
    padding:10px 10px;
    border:1px solid gray;
    border-radius:5px;
    background:rgba(255,255,255,.7);
}
.popup-form-container button{
    padding:5px 10px;
    margin-top:10px;
    /*float:right;*/
    margin-left:10px;
    color:#fff;
    border-radius:5px;
    border:0;
}
.popup-form-container #save_btn{
     background: linear-gradient(264deg, rgba(69,137,235,1) 0%, rgba(41,134,203,1) 100%);
     color:#fff;
}
.popup-form-container #closeButton {
     background-color: #e7ecf1;
      color: #000;
}
.form-action-button{
    display: flex;
    justify-content: end;
}
.notice-box{
      max-width: 700px;
      margin: 20px auto;
      padding: 18px 20px;
      background: #fff8e1;
      border: 1px solid #ffe08a;
      border-left: 6px solid #ff9800;
      border-radius: 10px;
      color: #222;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.7;
      font-size: 16px;
      /*float: right;*/
      margin-bottom: 20px;
    }

    .notice-box b{
      color: #000;
    }

    .notice-box a{
      color: #0b57d0;
      font-weight: 600;
      text-decoration: none;
    }

    .notice-box a:hover{
      text-decoration: underline;
    }