@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    * {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    html,
    body {
      height: 100%;
    }

    body {
      background-color: #f6f6f6;
      display: flex;
      flex-direction: column;
    }

    .container.body {
      flex: 1;
    }

    .navbar {
      background-color: #003399;
      margin-bottom: 1rem;
    }

    .navbar-brand {
      color: white;
    }

    .navbar-brand:hover {
      color: white;
    }

    .box {
      width: 25rem;
      height: 20rem;
      border: 1px solid black;
    }

    h4,
    .card-title {
      color: #003399;
    }

    small {
      color: #a94442;
      font-style: italic;
    }

    .card-text {
      font-size: 14px;
    }

    .card,
    .card-footer {
      background-color: #ffffff;
    }

    .login {
      background-color: #003399;
      color: white;
    }

    .login:hover {
      background-color: #335cad;
      color: white;
    }

    .body {
      margin-bottom: 1rem;
    }

    .footer {
      background-color: #003399;
      position: relative;
      bottom: 0;
      width: 100%;
      padding: 1rem 0;
    }

    footer h5,
    footer h6 {
      margin: 0;
    }

    hr {
      border: 0;
      border-top: 2px solid #ffffff;
      margin: 10px 0;
    }

    footer p {
      font-size: 11px;
      margin-bottom: 5px;
    }

    .me-2 {
      margin-right: 0.5rem;
    }