
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Rajdhani:wght@400;500;700&display=swap');


body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #2b2b2b);
    margin: 0;
    padding: 0;
    color: #fff;
}


.form-container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 25px;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.4);
    border: 1px solid rgba(255, 0, 80, 0.6);
    animation: fadeIn 1s ease-in-out;
}


h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff0040, #ff9a00, #ff0040);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s linear infinite;
    letter-spacing: 2px;
}


label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #ffcc00;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}


input[type="email"],
input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ff0040;
    border-radius: 8px;
    background-color: #111;
    color: #fff;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

input:focus,
select:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.5);
    outline: none;
}


.form-button {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff0040, #ff9a00);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.form-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 0, 80, 0.7);
}


.form-container a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-container a:hover {
    color: #ff0040;
    text-decoration: underline;
}


.alert .error-message {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0040;
    color: #ff7373;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 500;
}

.alert .success-message {
    background-color: rgba(0, 255, 100, 0.1);
    border: 1px solid #00ff66;
    color: #66ffb3;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 500;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.registration-container {
  background: linear-gradient(135deg, #001a33, #000000); 
  border-radius: 15px;
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.6);
}


.registration-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: formGlitter 8s linear infinite;
  opacity: 0.2;
}

@keyframes formGlitter {
  0% { transform: translate(0,0); }
  100% { transform: translate(-40px, -40px); }
}

@media (max-width: 991px) {

  html, body {
      height: 100%;
      margin: 0;
      padding: 0;
  }

  body {
      display: flex;
      flex-direction: column;
  }

  main {
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .signup-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem 1rem;
      margin-top: 80px; 
      margin-bottom: 40px; 
  }

   .signup-container .form-container {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }

  /* .login-page-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 1rem 40px;
    } */

    .login-page-wrapper {  
    min-height: calc(100vh - 120px); 
    display: flex;  
    justify-content: center;  
    align-items: center;  
    padding: 2rem 1rem;  
}

    .login-container {
        width: 100%;
        max-width: 500px;
    }

  
  footer .container {
      display: block !important;
  }
}
