html {
  font-size: 14px;
}
/* Full height for flex container */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
body {
    font-family: 'Inter', sans-serif;
}
/* Flex-grow for main content to fill space */
#page-content-wrapper {
    flex: 1;
}

/* Footer styling */
footer {
    background: linear-gradient(135deg, #70366c, #3b5569);
    color: white;
    text-align: center;
    padding: 10px 0;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* SweetAlert container style for positioning at top-right */
.swal2-container.custom-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999; /* Ensure SweetAlert appears above other elements */
}

/* Custom popup style */
.swal2-popup.custom-popup {
    animation: fadeInTopRight 0.5s ease-out;
}

/* Smooth fade-in animation */
@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate(30px, -30px); /* Starts from slightly bottom-left */
    }

    100% {
        opacity: 1;
        transform: translate(0, 0); /* Final position at top-right */
    }
}
.banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
}

.banner h2 {
    font-size: 20px;
    font-weight: normal;
    margin: 0;
}

@media (max-width: 600px) {
    .banner h1 {
        font-size: 26px;
    }

    .banner h2 {
        font-size: 16px;
    }