body::before {
    content: "";
    position: fixed; /* Position the pseudo-element to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/office-business-freehand-drawings-seamless-pattern-business-pattern-doodle-style-hand-drawn-elements/business01_025.jpg');
    background-size: cover; /* Cover the entire size of the element */
    background-repeat: no-repeat;
    background-position: center; /* Center the background image */
    opacity: 0.15; /* Set the opacity to 75% - adjust as necessary */
    z-index: -1; /* Ensures it's behind all other content */
}

/* Ensure the container takes the full viewport height */
.full-height {
    height: 100vh;
}

/* Center the form content */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* @keyframes fadeOut {
    0% { opacity: 1; max-height: 100px; }
    100% { opacity: 0; max-height: 0; padding: 0; margin: 0; }
  }

  .alert {
    overflow: hidden;
    animation: fadeOut 0.5s ease-in-out forwards;
    animation-delay: 2s;
    transition: max-height 0.5s ease-out;
  } */