.alert_popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .alert_popup > hgroup {
    width: 92%;
    max-width: 600px;
    padding: 65px 30px 40px;
    height: fit-content;
    border-radius: 20px;
    border: 5px solid #103e80;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
  }

  .alert_popup > hgroup span {
    text-align: center;
    color: #103e80;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 140%; /* 43.4px */
    letter-spacing: -0.31px;
  }

   .alert_popup > hgroup .confirm_btn {
    width: 224px;
    padding: 8px 24px;
    border-radius: 50px;
    background: #295bd2;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    border: none;
    line-height: 155%; /* 40.3px */
    letter-spacing: -0.78px;
  }

  .alert_popup > hgroup .close_btn {
    position: absolute;
    border: none;
    background: none;
    top: 25px;
    right: 25px;
  }

    @media (max-width: 768px) {
    .alert_popup > hgroup span {
      font-size: 24px;
    }

    .alert_popup > hgroup .confirm_btn {
      width: 200px;
      padding: 8px 20px;
      font-size: 18px;
    }

	    .alert_popup > hgroup {
      padding: 40px 20px;
    }

	  .alert_popup > hgroup .close_btn {
    top: 15px;
    right: 15px;
  }
  }