      @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
      body {
        margin: 0px;
        padding: 0px;
        font-family: "Montserrat";
      }
      .main-background {
        background: linear-gradient(-45deg, #020617, #0c1a3d, #1e3a5f, #0d2847);
        background-size: 400% 400%;
        animation: gradientShift 25s ease infinite;
        height: 100%;
        padding: 0px 55px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      @keyframes gradientShift {
        0%, 100% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
      }
      .mobile-wave,
      .mobile-wave-2 {
        display: none;
      }
      .login-footer {
        position: absolute;
        bottom: 24px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 14px;
        color: rgba(226, 232, 240, 0.6);
      }
      .login-footer a {
        color: rgba(226, 232, 240, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
      }
      .login-footer a:hover {
        color: #60a5fa;
      }
      .login-outer {
        max-width: 677px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
      }
      .login-outer img {
        margin-bottom: 30px;
      }
      .login-title {
        font-weight: 800;
        font-size: 55px;
        line-height: 67px;
        color: #e2e8f0;
        margin: 0px 0px 15px;
        text-align: center;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
      .login-button a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        background: linear-gradient(135deg, #60a5fa, #3b82f6);
        border-radius: 12px;
        padding: 12px 20px;
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 24px;
        color: #fff;
        white-space: nowrap;
        margin: 35px auto 0px;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        transition: all 0.3s ease;
        border: none;
      }
      .login-button a .google-icon {
        flex-shrink: 0;
      }
      .login-button a:hover {
        background: linear-gradient(135deg, #93c5fd, #60a5fa);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
        transform: translateY(-2px);
      }
      .login-button a:active {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
      }
      .login-button a.disabled {
        pointer-events: none;
        background: linear-gradient(135deg, #94a3b8, #64748b);
        box-shadow: none;
        opacity: 0.6;
      }
      @media only screen and (max-width: 991px) {
        .main-background {
          background: linear-gradient(#03225d, #3a6dcf, #3a6dcf);
        }
        .mobile-wave {
          display: block;
          background: url("/static/img/mobile-waves.png");
          background-repeat: no-repeat;
          background-size: cover;
          width: 100%;
          height: 167px;
          position: absolute;
          background-position: 0px -60px;
          top: 0;
          left: 0;
          right: 0;
        }
        .mobile-wave-2 {
          display: block;
          background: url("/static/img/mobile-waves-2.png");
          background-repeat: no-repeat;
          background-size: contain;
          width: 100%;
          height: 100px;
          position: absolute;
          background-position: bottom center;
          top: auto;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: 0;
        }
        .login-outer {
          position: relative;
          z-index: 9;
        }
        .login-title {
          font-size: 30px;
          line-height: 40px;
        }
      }
      @media only screen and (max-width: 768px) {
        .main-background {
          padding: 0px 15px;
        }
        .mobile-wave {
          background-position: center -60px;
        }
      }
