body, html {
      margin: 0;
      height: 100%;
      font-family: 'FuturaBkBT', Arial, sans-serif;
      overflow: hidden;
    }

    body {
      background: url('../assets/img/bg_login.webp') no-repeat center center fixed; 
      background-size: cover;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      position: relative;
      color: white;
      padding: 0 20px;
    }

    .bem-vindo {
      position: absolute;
      top: 50%;
      left: 40px;
      transform: translateY(-50%);
      font-size: 3.2rem;
      color: white;
      user-select: none;
      pointer-events: none;
      z-index: 1;
      animation: fadeIn 1s ease-out forwards;
      text-align: center;
      word-break: break-word;
      max-width: 100%;
    }

    .login-box {
      background-color: rgba(0, 0, 0, 0.85);
      padding: 40px;
      width: 400px;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
      z-index: 2;
      opacity: 0;
      animation: fadeIn 1.2s ease-out forwards;
    }

    .login-box h2 {
      margin: 0 0 20px 0;
      font-size: 1.8rem;
      text-align: center;
      color: orange;
      user-select: none;
    }

    .login-box input {
      width: 100%;
      padding: 10px;
      margin-bottom: 16px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      background-color: #222;
      color: white;
      box-sizing: border-box;
    }

    .login-box button {
      width: 100%;
      padding: 12px;
      background-color: orange;
      color: black;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      font-size: 15px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .login-box button:hover {
      background-color: #cc8400;
    }

    .login-box .erro {
      color: #ff4d4d;
      text-align: center;
      margin-bottom: 10px;
      font-weight: 600;
      user-select: none;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @media (max-width: 768px) {
      body {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        overflow: auto;
      }

      .bem-vindo {
        position: static;
        transform: none;
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
        animation: fadeInMobile 0.8s ease-out forwards;
      }

      @keyframes fadeInMobile {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .login-box {
        width: 100%;
        max-width: 400px;
        margin: 0;
      }
    }
