* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  justify-content: center;
  align-items: center;
}

#signupForm {
  width: 380px;
  padding: 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

#signupForm > div {
  margin-bottom: 15px;
}

label {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

input {
  width: 100%;
  height: 34px;
  margin-top: 6px;
  padding: 0 12px;
  border-radius: 10px;
  border: none;
  font-size: 13px;
}

input::placeholder {
  font-size: 12px;
}

input:focus {
  outline: 2px solid #c7d2fe;
}

#password {
  width: calc(100% - 55px);
  border-radius: 10px
}

#typeToggle {
  height: 34px;
  width: 50px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
}

p {
  font-size: 10px;
  margin-top: 4px;
  color: #fecaca;
}

input[type="checkbox"] {
  width: auto;
  height: auto;
  margin-right: 6px;
}

#sub-btn {
  width: 100%;
  height: 38px;
  border-radius: 12px;
  border: none;
  background: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

#sub-btn:hover {
  background: #e0e7ff;
}

#toast {
  position: fixed;
  bottom: 20px;
  background: #22c55e;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  display: none;
}

#strength {
  font-size: 10px;
  margin-top: 3px;
}
