 @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Poppins:wght@300;400;600&display=swap');
    @font-face {
      font-family: "Monster of Fantasy";
      src: url("fonts/MONSTER\ OF\ FANTASY.otf");
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #41A67E;
      color: #fff;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .container {
      display: flex;
      width: 900px;
      height: 500px;
      background-color: #012B2E;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .left-panel {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #FFE797;
      position: relative;
      overflow: hidden;
    }

    .character-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      position: relative;
    }

    .char-left {
      position: absolute;
      left: 0;
      bottom: -190px;
      height: 370px;
      object-fit: contain;
      margin-left: -51px;
    }

    .char-right {
      position: absolute;
      right: 0;
      bottom: 50px;
      height: 270px;
      object-fit: contain;
    }

    .dor-logo {
      width: 170px;
      height: auto;
      z-index: 2;
      transition: transform 0.5s ease, filter 0.5s ease;
    }

    .dor-logo:hover {
      transform: scale(1.5);
      filter: drop-shadow(0 0 10px #FFD580);
    }

    .divider {
      width: 2px;
      background-color: rgba(255, 255, 255, 0.2);
      height: 80%;
      align-self: center;
    }

    .right-panel {
      flex: 1.5;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px;
    }

    .right-panel h1 {
      font-family: 'Monster of Fantasy';
      font-weight: 600;
      margin-bottom: 5px;
      color: #FFD580;
      text-shadow: 0 0 8px rgba(255, 213, 128, 0.6);
      letter-spacing: 3px;
    }

    .right-panel p {
      font-size: 0.9rem;
      color: #bbb;
      margin-bottom: 25px;
    }

    .input-group {
      position: relative;
      margin-bottom: 15px;
      width: 80%;
      padding-right: 40px;
    }

    input[type="password"]::-ms-reveal,
    input[type="password"]::-ms-clear,
    input[type="password"]::-webkit-credentials-auto-fill-button,
    input[type="password"]::-webkit-textfield-decoration-container,
    input[type="password"]::-webkit-clear-button {
      display: none !important;
    }

    input[type="password"]::-webkit-textfield-decoration-container {
      visibility: hidden !important;
    }
  
    /* Shake animation */
    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      20%, 60% { transform: translateX(-5px); }
      40%, 80% { transform: translateX(5px); }
    }

    .shake {
      animation: shake 0.4s ease;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        width: 90%;
        height: auto;
      }
      .divider {
        display: none;
      }
      .left-panel, .right-panel {
        width: 100%;
      }
      .char-left, .char-right {
        height: 200px;
      }
      .dor-logo {
        width: 160px;
      }
    }
