body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.login-container {
    width: 300px;
    margin: 100px auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    border-radius: 10px;
    box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.3); /* White shadow effect */
}

h2 {
    text-align: center;
}

input[type="text"],
input[type="password"],
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    color: #fff;
    font-size: 16px;
    outline: none;
}

input[type="text"],
input[type="password"] {
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
    background-color: rgba(255, 255, 255, 0.2); /* Lighter semi-transparent white */
}

button {
    background-color: #070606; /* Green */
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #39393961; /* Darker green on hover */
}






















.loader {
    perspective: 600px;
    width: 100px;
    height: 100px;
  }
  
  .cube {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate 4s linear infinite;
  }
  
  .face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3498db00, #e74d3c00);
    opacity: 0.8;
    border: 0.5px solid #fff;
  }
  
  .face:nth-child(1) {
    transform: rotateX(90deg) translateZ(50px);
  }
  
  .face:nth-child(2) {
    transform: rotateX(-90deg) translateZ(50px);
  }
  
  .face:nth-child(3) {
    transform: translateZ(50px);
  }
  
  .face:nth-child(4) {
    transform: rotateY(90deg) translateZ(50px);
  }
  
  .face:nth-child(5) {
    transform: rotateY(-90deg) translateZ(50px);
  }
  
  .face:nth-child(6) {
    transform: rotateY(180deg) translateZ(50px);
  }
  
  @keyframes rotate {
    0% {
      transform: rotateX(0deg) rotateY(0deg);
    }
  
    100% {
      transform: rotateX(360deg) rotateY(360deg);
    }
  }
  
