.popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1080px;
}

.popup-content {
  width: 480px;
  height: 176px;
  border-radius: 16px;
  border: 2px solid #0068ff;
  background-color: #fff;

  .popup-title {
    width: 100%;
    height: 16px;
    background-color: #0068ff;
    border-radius: 13px 13px 0 0;
  }

  .popup-content-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;

    p {
      font-size: 15px;
      line-height: 23px;
      letter-spacing: -0.6px;
      font-weight: 500;
    }

    .line {
      width: 100%;
      height: 1px;
      background: #d9dfec;
    }

    .button-group {
      display: flex;
      justify-content: end;
      gap: 8px;
    }
  }
}
