/* Base Body Styling */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: linear-gradient(to bottom right, #0240fa, #f6632e);
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

/* Bubble Container */
.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Individual Bubble Styles */
.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(129, 129, 240, 0.3);
  border-radius: 50%;
  filter: blur(1px);
  animation: floatUp 18s infinite ease-in-out;
  opacity: 0.8;
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 60px; height: 60px; left: 25%; animation-delay: 3s; }
.bubble:nth-child(3) { width: 30px; height: 30px; left: 50%; animation-delay: 6s; }
.bubble:nth-child(4) { width: 70px; height: 70px; left: 70%; animation-delay: 1.5s; }
.bubble:nth-child(5) { width: 50px; height: 50px; left: 90%; animation-delay: 5s; }

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-120vh) scale(1.3);
    opacity: 0;
  }
}

/* Main Container */
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

/* Login Box */
.login-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  width: 100%;
  color: #333;
  z-index: 2;
  position: relative;
  margin: auto;
  transition: transform 0.3s ease;
}

.login-box:hover {
  transform: translateY(-4px);
}

.login-box h5 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff4500;
  margin-bottom: 20px;
  text-align: center;
}

.login-box .form-control {
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
}

/* Portal Header */
.portal-header {
  text-align: center;
  margin-right: 230px;
  margin-top: 60px;
  padding: 20px;
  z-index: 2;
  position: relative;
}

.portal-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portal-logo {
  max-height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.portal-logo:hover {
  transform: scale(1.05);
}

.portal-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
}

.portal-subtitle {
  font-size: 1.2rem;
  color: #f0f4f8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 576px) {
  .portal-title {
    font-size: 1.6rem;
  }

  .portal-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .portal-logo {
    max-height: 60px;
  }

  .login-box {
    padding: 25px 20px;
  }
}

  
/* Toast Container Position */
#toast-container > .toast {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 300px;
    background: green !important;
    font-weight: bold;
    color: black !important;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: fadeIn 1s ease-in-out, fadeOut 1s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0s, 15s;
}

/* Toast Progress Bar */
#toast-container > .toast-progress {
    background: orangered !important;
    height: 5px;
}

/* Toast Button */
#toast-container > .toast .toast-close-button {
    background: #28a745 !important;
    color: white !important;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

#toast-container > .toast .toast-close-button:hover {
    background: #218838 !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
        body {
            background-color: #f8f9fa;
        }
        .login-box {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 300px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .portal-content {
            text-align: center;
            margin-top: 150px;
        }
