
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-image: url("../images/Log_In.png");
    background-size: cover;
    background-position: center 40%;
  }

  .login-container {
    width: 90%;
    max-width: 400px;
    padding: 3%;
    margin: 100px auto 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0);
    animation: neon 2s linear infinite alternate;
  }

  @keyframes neon {
    0% {
      box-shadow: 0 0 5px rgba(255, 255, 255, 255), 0 0 20px rgba(255, 255, 255, 255), 0 0 20px rgba(255, 255, 255, 255);
    }
    50% {
      box-shadow: 0 0 5px rgba(54, 76, 255, 255), 0 0 20px rgba(54, 76, 255, 255), 0 0 20px rgba(54, 76, 255, 255);
    }
    100% {
      box-shadow: 0 0 5px rgba(255, 255, 255, 255), 0 0 20px rgba(255, 255, 255, 255), 0 0 20px rgba(255, 255, 255, 255);
    }
  }

  .login-container h2 {
    font-size: 24px;
    color: #fff;
  }

  input[type="text"], input[type="password"] {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
  }

  input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #102C54;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 18px;
  }

  @media (max-width: 1080px) {
    body {
      background-image: url("../images/login_mov.png");

      background-position: center 50%;
    }
  }

