body {
      background-color: #f8f9fa;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: left;
      font-family: 'Poppins', sans-serif;
    }
    .logo {
      font-size: 2.5rem;
      font-weight: 600;
      text-align: center;
      margin-bottom: 40px;
    }
    .flag {
      width: 40px;
      height: auto;
      margin-right: 15px;
      flex-shrink: 0;
    }
    .text-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .message {
      width: 80%;
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
    }
    .message img {
      width: 50px;
      height: 30px;
    }
    .message p {
      margin: 0;
      font-size: 1.5rem;
      line-height: 1.5;
    }


@media only screen and (max-width: 991px) {
    body {
        height: auto;
    }
    .logo {
        margin-bottom: 20px;
    }
    .message {
        width: 100%;
        flex-direction: column;
        align-items: start;
    }
    .message p {
      font-size: 1.2rem;
      line-height: 1.2;
    }
}