body {
  margin: 0;
  padding: 0;
  background: #1d1f27; /* Dark base color */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('images/background1123.jpg') no-repeat center center/cover;
      z-index: -1;
    }
 .black-square {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 550px;
      height: 350px;
      background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
      z-index: 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
    }
.logo {
      position: absolute;
      top: 5%;
      left: 30%;
      width: 40%;
      height: 30%;
      background: url('images/Vixsoft_logo.png') no-repeat center center/cover;
      z-index: -1;
    }
.tile {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(145deg, #2a9d8f, #264653);
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transform: rotateX(45deg) rotateY(45deg) translateZ(0);
  animation: bounce 6s ease-in-out infinite;
}

.tile:nth-child(odd) {
  background: linear-gradient(145deg, #e9c46a, #f4a261);
  animation-delay: calc(var(--i) * 0.2s);
}

.tile:nth-child(even) {
  background: linear-gradient(145deg, #457b9d, #1d3557);
  animation-delay: calc(var(--i) * 0.3s);
}



.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: white;
  text-align: center;
}

.content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.content p {
  font-size: 1.2rem;
  opacity: 0.8;
}
.loginForm {
    z-index: 15; 
}