 body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .everest-img {
     
      background-size: cover;
      height: 100%;
    }

    .footer {
      background-color: #343a40;
      color: white;
      text-align: center;
      padding: 12px;
      font-size: 14px;
    }

    .marquee-wrapper {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
    }

    .marquee-text {
      display: inline-block;
      padding-left: 100%;
      animation: scroll-left 15s linear infinite;
      font-size: 20px;
      margin-top: 2px;
      color: red;
      font-weight: bold;
      
    }

    @keyframes scroll-left {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-100%); }
    }

    .login-card {
      max-width: 500px;
      width: 100%;
      border: 5px;
    }