/* Général */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('/static/assets/VercelBackground.png') no-repeat center center/cover;
  font-family: 'Orbitron', sans-serif;
  color: #00f5d4;
}

/* Conteneur */
.login-container {
  text-align: center;
  width: 90%;
  max-width: 600px;
}

/* Titre */
.login-container h1 {
  color: #00f5d4;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px #00f5d4;
}

/* Input + bouton */
.input-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.5);
  border: 2px solid #555;
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 2rem;
}

.input-group .icon {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: #00f5d4;
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem;
}

/* Bouton access */
.btn-access {
  background: transparent;
  border: 2px solid #00f5d4;
  color: #00f5d4;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-access:hover {
  background: #00f5d4;
  color: #000;
  box-shadow: 0 0 15px #00f5d4;
}

/* Ligne séparatrice */
.divider {
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 2rem 0;
  opacity: 0.7;
}

/* Bouton Verify */
.btn-verify {
  width: 100%;
  background: transparent;
  border: 2px solid #00f5d4;
  color: #00f5d4;
  padding: 0.75rem;
  font-size: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-verify:hover {
  background: #00f5d4;
  color: #000;
  box-shadow: 0 0 20px #00f5d4;
}
/* Responsive */
@media (max-width: 600px) { 
  .login-container h1 {
    font-size: 1.5rem;
  }

  .input-group input {
    font-size: 0.9rem;
  }

  .btn-access, .btn-verify {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}