 html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
    font-family: Arial, sans-serif;
    background: linear-gradient(213deg, #0f0c29, #302b63);
  }


  body.login .lumen-login-container {
    background: #302b6300;
}

  .lumen-content {
    z-index: 1;
    position: relative;
}
  .lumen-hero p {
    margin: 0;
    font-size: 20px;
    font-family: "Playfair Display";
}

  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: transparent
  }


  canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  /* LUMEN text */
.lumen-home-content {
    z-index: 2;
    margin-bottom: 50px;
    animation: pulse 2s infinite alternate;
}

.lumen-home-content h1 {
    margin: 0;
    font-size: 18vw;
    font-weight: 900;
    line-height: 0.6;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
 .lumen-home-content p {
    font-size: 1.5vw;
    margin-top: 20px;
    color: #fff;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-family: "Playfair Display", serif;
}
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; transform: rotate(-5deg); }
    100% { transform: scale(1.15); opacity: 1; }
  }

  p {
    font-size: 1.5rem;
    margin-top: 20px;
    z-index: 2;
    opacity: 0.9;
  }  
  
  .lumen-login-container {
    background: #ffffff;
    margin: 30px;
    padding: 30px 70px;
    border-radius: 5px;
}

form.lumen_login {
    background:#ffffff;
    border: 1px #e2e2e2 solid;
    border-radius: 5px;
    padding: 50px;
    width: 70vh;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}

h2.lumen-login-title {
    color: #1b173d;
}


.lumen-login-btn {
    background: #1b173d;
    border: 0;
    width: 100%;
    padding: 15px 0px;
    border-radius: 100px;
}

.lumen-login-btn:hover {
    background: #120f29;
}
.container-fluid {
    margin: 0;
    padding: 0;
    z-index:1
}

.container-fluid.navbar-container {
    margin: 0px 100px;
}

.alert {
    border-radius: 10px;
    border: 0 !important;
}

.alert-danger {
    background-color: #721c24;
    color: #f8d7da;
}

.alert-success {
    background-color: #155724;
    color: #d4edda;
}
a {
    text-decoration: none;
}

.navbar-custom {
    background-color: #00000026;
    /* box-shadow: 0px 3px 0 #00000045; */
    padding: 35px 0px !important;
}

footer {
    background-color: #00000021 !important;
    color: #fff;
    padding: 10px 0px;
    font-family: "Playfair Display";
    font-size: 15px
}

footer .container-fluid, footer .container {
    background: transparent!important;
    background-color: transparent!important;
}
footer p {
    font-size: 15px;
    margin: 0;
}
footer ul {
    margin: 0;
}
.notice {
    background: #302b63;
    color: #fff;
    padding: 10px;
    z-index: 1;
    position: relative;
    text-align: center;
    font-weight: 600;
    font-family: 'Playfair Display';
    animation: changeColor 1s infinite;
}
@keyframes changeColor {
    0% { background-color: #302b63; }
    50% { background-color: #0f0c29; }
    100% { background-color: #302b63; }
}