* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
/* Background with blur effect */
/* Background with blur effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("images/login.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: -1;
}
.signup-container {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.signup-header {
  background: #e47c06;
  color: white;
  padding: 30px;
  text-align: center;
}

.signup-header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}
.signup-header p {
  font-size: 14px;
  opacity: 0.9;
}

.signup-form {
  padding: 30px;
}

.signup-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #e74c3c;
  outline: none;
}

.password-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777;
}

.password-strength {
  height: 5px;
  margin-top: 8px;
  border-radius: 3px;
  background: #eee;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  transition: width 0.3s, background 0.3s;
  border-radius: 3px;
}

.password-strength-text {
  font-size: 12px;
  margin-top: 5px;
  color: #777;
}

.signup-btn {
  background-color: #fc8702;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s;
}
.signup-btn:hover {
  background-color: #bd5602;
}
.signup-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.login-redirect {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}
.login-redirect a {
  color: #e47c06;
  text-decoration: none;
  font-weight: 600;
}
.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.success-message {
  color: #27ae60;
  font-size: 14px;
  margin-top: 5px;
  display: none;
  text-align: center;
  padding: 10px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 5px;
}

@media (max-width: 768px) {
  .signup-container {
    max-width: 100%;
  }

  .signup-form {
    padding: 20px;
  }
}
