    @font-face {
      font-family: 'Robtronika';
      src: url('fonts/Robtronika-Italic.ttf') format('truetype');
    }
    @font-face {
      font-family: 'Trender';
      src: url('https://fonts.cdnfonts.com/s/19763/Trender.woff') format('woff');
    }

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.login-container, .account-container {
  background: white;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: center;
}

input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #45a049;
}

#error {
  color: red;
  margin-top: 10px;
}

.money{
  margin-top: 300px;
  display: flex;
  border: 2px solid red;
}


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: background 0.5s, color 0.5s, border-color 0.5s;
    }

    body {
      font-family: 'Montserrat Alternates', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-x: hidden;
    }
    body.light {
      background: linear-gradient(270deg, #e4e4e7, #cfcfd3, #dadade);
      background-size: 600% 600%;
      animation: gradientMove 18s ease infinite;
    }

    body.dark {
      background: linear-gradient(270deg, #0d0d11, #1c1c22, #101016);
      background-size: 600% 600%;
      animation: gradientMove 18s ease infinite;
      color: #fff;
    }

    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .theme-toggle {
      position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s, color 0.3s;
  color: #000;
  z-index: 1000;
    }
    .theme-toggle:hover {
      transform: scale(1.1);
      background: rgba(0,0,0,0.8);
      color: #fff;
    }

    body.dark .theme-toggle {
      background: rgba(0,0,0,0.6);
      color: #fff;
    }

    .theme-toggle svg {
      width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
    }

    .logo {
      font-family: 'Robtronika', sans-serif;
      font-size: 48px;
      font-weight: normal;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      gap: 12px;
      text-align: center;
      color: #0052ff;
    }
    body.dark .logo {
      color: #fff;
    }

    .logo img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .login-box {
      background: #fff;
      padding: 30px 40px;
      border-radius: 20px;
      box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25);
      text-align: center;
      width: 300px;
      max-width: 100%;
    }
    body.dark .login-box {
      background: #1b1b20;
      box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.6);
    }

    .login-box h2 {
      font-family: 'Trender', sans-serif;
      font-size: 18px;
      margin-bottom: 20px;
      color: #000000;
    }
    body.dark .login-box h2 {
      color: #fff;
    }

    .input-box {
      position: relative;
      margin-bottom: 15px;
    }

    .input-box input {
      width: 100%;
      padding: 10px 40px;
      border: 2px solid #ccc;
      border-radius: 25px;
      font-size: 14px;
      outline: none;
      transition: all 0.3s ease;
      background: transparent;
      color: inherit;
    }

    body.dark .input-box input {
      border: 2px solid #444;
      color: #fff;
    }

    body.dark .input-box input:focus {
        border-color: #0052ff;
    }


    .input-box input:focus {
      border-color: #0052ff;
    }

    .input-box svg {
      position: absolute;
      top: 50%;
      left: 12px;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      opacity: 0.6;
    }
    body.dark .input-box svg {
      stroke: #000000;
    }

    .login-btn {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 25px;
      background: #0052ff;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin: 10px 0 15px;
      transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    }
    .login-btn:hover {
      background: #0052ff;
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 6px 15px #0052ff(71, 9, 120, 0.4);
    }

    .login-box a {
      font-size: 13px;
      color: #0052ff;
      text-decoration: none;
      position: relative;
    }
    body.dark .login-box a {
      color: #ddd;
    }

    .login-box a::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #0052ff, #0052ff);
      transition: width 0.3s;
    }
    .login-box a:hover::after {
      width: 100%;
    }

    @media (max-width: 768px) {
      .logo { font-size: 36px; }
      .login-box { width: 260px; padding: 25px 30px; }
    }
    @media (max-width: 480px) {
      .logo { font-size: 28px; margin-bottom: 25px; }
      .login-box { width: 100%; padding: 20px; border-radius: 15px; }
    }
    
.container {
    margin-left: 250px;
    display: flex;
    height: 100vh;
}

.sidebar {
    margin-top: 100px;
    width: 80px;
    background: #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.sidebar button {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    padding: 15px 5px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: background 0.2s;
}

.sidebar button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.content {
    margin-left: 50px;
    flex: 1;
    padding: 20px;
    background: #ecf0f1;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
