/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondory-color));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
    background: url("https://img.freepik.com/premium-photo/data-security-systems-computer-with-shield-keyboard-protect-crime-by-anonymous-hacker-internet-data-network-technology-background-cyber-security-concept_1217659-1524.jpg?ga=GA1.1.572590152.1728395548&semt=ais_hybrid") no-repeat center center/cover;
  }
  body::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 60%;  
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    background: rgba(46, 44, 44, 0.5); /* Adjust opacity as needed */
    z-index: -1;
    rotate: 20deg; 
    /* clip-path: polygon(25% 0%, 100% 0, 100% 50%, 0 100%, 0 100%, 0 0); */
  }
  
  .login-container {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
    /* background-image: url("https://img.freepik.com/free-vector/abstract-vector-blue-mesh-background-chaotically-connected-points-polygons-flying-space-flying-debris-futuristic-technology-style-card-lines-points-circles-planes-futuristic-design_1217-654.jpg?ga=GA1.1.572590152.1728395548&semt=ais_hybrid"); */
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    /* opacity: 0.8; */
    backdrop-filter: blur(10px);
  
  }
  
  .login-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .login-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .login-header p {
    color: white;
  }
  
  .input-group {
    margin-bottom: 1.5rem;
  }
  
  .input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: white;
  }
  
  .input-group input, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    cursor: pointer;
  }
  
  .input-group input:focus {
    border-color: #6a11cb;
    outline: none;
  }
  
  .login-button {
    width: 100%;
    padding: 0.8rem;
    background: var(--secondory-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .login-button:hover {
    background: var(--primary-color);
  }
  
  .login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: white;
  }
  
  .login-footer a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .login-footer a:hover {
    color: black;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Form Row Layout */
.form-row {
  display: flex;
  gap: 20px; /* Space between input fields */
  margin-bottom: 1.5rem;
}

.form-row .input-group {
  flex: 1; /* Each input group takes equal space */
}

/* Center the Signup Button */
.form-row:has(.login-button) {
  justify-content: center;
}

/* Responsive Design for Rows */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column; /* Stack input fields vertically on small screens */
    gap: 10px;
  }
}
.input-group input, .input-group textarea{
  width: 100%;
  background-color: rgb(244, 242, 242);
}