body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("../assets/images/signup-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.main {
  width: 380px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  background: rgba(82, 159, 169, 0.83);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1rem;
}

input {
  width: 100%;
  padding: 12px;
  border: 2px solid black;
  border-radius: 10px;
  background: rgba(240, 248, 255, 0.567);
  color: black;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

::placeholder {
  color: black;
  font-weight: bold;
}

.btn-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.btn {
  width: 100px;
  padding: 12px 0;
  border-radius: 8px;
  background: white;
  color: black;
  border: 2px solid black;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: black;
  color: white;
  transform: translateY(-2px);
}

.links {
  margin-top: 1.5rem;
  text-align: center;
  color: white;
}

.links p {
  color: black;
}

.links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.links a:hover {
  text-decoration: underline;
}
