/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  background: url('/images/register-bg.jpg') no-repeat center center fixed;
  justify-content: center;
  align-items: center;
  background-image: url("/images/loginback.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  
 
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Container */
.login-container {
  background-color: #555;
  padding: 40px;
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Heading */
.login-container h2 {
  color: white;
  margin-bottom: 25px;
}

/* Input and select styling */
.login-form input,
.login-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

/* Submit Button */
.login-form button {
  width: 100%;
  padding: 12px;
  background-color: #f46b08;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-form button:hover {
  background-color: #e65c00;
}

/* Signup link */
.signup-link {
  margin-top: 15px;
  font-size: 14px;
  color: white;
}

.signup-link a {
  color: #ffa85e;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}
