@import url(https://fonts.googleapis.com/css?family=Work+Sans:400,500,600);

    p, h1, h2, h3, h4, h5, h6, div, input, span {
      font-family: 'Work Sans', sans-serif !important;
    }

    body {
      gap: 140px;
      margin: 0px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background-color: #1374F6;
    }

    h2 {
      position: relative;
      display: flex;
      margin-bottom: 20px;
      margin-top: 0;
      gap: 5px;
      color: #fff;
      font-size: 4em;
      cursor: default;
    }

    h2 span {
      position: relative;
      filter: blur(6px);
      padding: 0 5px;
      transition: filter 0.5s;
      opacity: 0;
      animation: fadeIn 3s ease-in-out forwards;
    }

    h2 span:hover {
      filter: blur(0px);
    }

    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }

    .login-container {
      margin-top: 20px;
      padding: 30px;
      width: 335px;
      max-width: 400px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 15px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      border: 0.5px solid rgba(255, 255, 255, 0.4);
      color: rgba(255, 255, 255, 0.6);
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .login-container input {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      margin-bottom: 10px;
      border: none;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      font-size: 1em;
      box-sizing: border-box;
    }

    .login-container input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .checkboxdiv {
      width: 100%;
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .checkboxdiv2 {
      width: 90%;
      display: flex;
      color: rgba(255, 255, 255, 0.8);
      justify-content: flex-start;
      align-items: center;
    }

    .login-container input:hover {
      background: rgba(150, 150, 150, 0.1);
    }

    input[type="text"]:focus,
    input[type="password"]:focus {
      outline: none;
      border: 1px solid rgba(150, 150, 150, 0.1);
    }

    .login-container .buttons {
      display: flex;
      justify-content: center;
      width: 100%;
      margin: 0 auto;
    }

    .login-container button {
      padding: 10px 20px;
      border: none;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.8);
      font-size: 1em;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .login-container button:hover {
      background: rgba(150, 150, 150, 0.1);
    }

    input[type="checkbox"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      padding: 0;
      background: rgba(255, 255, 255, 0.3);
      width: 20px;
      height: 20px;
      border-radius: 1dvb;
      cursor: pointer;
      position: relative;
    }

    input[type="checkbox"]:checked::before {
      content: "✔";
      display: block;
      text-align: center;
      line-height: 20px;
      color: #444;
    }

    input[type="checkbox"]:hover {
      background: rgba(150, 150, 150, 0.1);
    }

    #background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    canvas {
      max-width: 100%;
      max-height: 99%;
    }

    .additional-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      margin: 10px auto;
    }

    .remember-me {
      display: flex;
      align-items: center;
      color: rgba(255, 255, 255, 0.8);
    }

    .forgot-password {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9em;
      text-decoration: none;
    }

    .forgot-password:hover {
      text-decoration: underline;
    }

    .register-button {
      margin-left: auto;
      text-decoration: none;
    }

    .download-container {
      margin: auto;
      height: 100%;
      gap: 40px;
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
    }

    .download-button img {
      border-radius: 15px;
      width: 125px;
      max-width: 100%;
    }
    .left-div{
      margin-top: 50px;
    }
    @media (max-width: 768px) {
      body {
        flex-direction: column;
        gap: 20px;
      }

      .left-div{
        margin-top: 0px;
      }

      h2 {
        font-size: 3em;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
      }

      .login-container {
        margin-top: 0;
      }
    }