body {
  background: linear-gradient(135deg, #0b3d91, #1db954);
  min-height: 100vh;
}

.regform {
  max-width: 700px;
  margin: auto;
  background: linear-gradient(135deg, #0b3d91, #1db954);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.regform label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.regform input,
.regform select,
.regform textarea {
  margin-top: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
}

.regform button[type="submit"] {
  margin-top: 15px;
  padding: 10px 15px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.regform button:hover {
  background-color: #2980b9;
}

.regform a {
  display: inline-block;
  margin-top: 10px;
  color: #01070bff;
  text-decoration: none;
  font-weight: bold;
}

.regform a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .regform {
    padding: 15px;
    width: 95%;
  }

  body {
    padding: 10px;
  }
}

/* Input with eye */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap input {
  width: 100%;
  padding-right: 40px;
}

.toggle-pw {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Strength bar */
.strength-track {
  height: 5px;
  background: #444;
  border-radius: 10px;
  margin-top: 6px;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 10px;
}

.strength-label {
  font-size: 0.75rem;
  color: #ccc;
  margin-top: 4px;
}

/* Requirements */
.requirements {
  text-align: left;
  margin-top: 8px;
}

.requirements li {
  font-size: 0.75rem;
  color: #aaa;
}

.requirements li.met {
  color: #2ecc71;
}
