* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background-color: #f4f9f4;
  padding: 40px;
  display: flex;
  justify-content: center;
}
div {
  width: 100%;
  max-width: 600px;
}
fieldset {
  border: 2px solid #4caf50;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
legend {
  font-weight: bold;
  font-size: 18px;
  color: #2e7d32;
  padding: 0 10px;
}
form label,
#bankInput label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}
form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="number"],
form input[type="tel"],
#bankInput input[type="text"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
#bankInput {
  margin-top: 10px;
}
#bankInput button {
  margin-top: 15px;
  padding: 8px 15px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
#bankInput button:hover {
  background-color: #388e3c;
}
.bank-group {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px dashed #ccc;
}
.removeBtn {
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.removeBtn:hover {
  background-color: #d32f2f;
}
.createAcc input[type="submit"] {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.createAcc a {
  margin-left: 10px;
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}
.createAcc a:hover {
  text-decoration: underline;
}
.password-options {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.show-password-row {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.show-password-row input[type="checkbox"] {
  margin-right: 8px;
  margin-left: 2px;
  width: 16px;
  height: 16px;
  accent-color: #4caf50;
}
.show-password-row label {
  font-weight: normal;
  font-size: 14px;
  color: #333;
  margin: 0;
  cursor: pointer;
  padding: 0;
}
#strengthMessage {
  font-weight: bold;
  min-width: 90px;
  margin: 0;
  padding-left: 5px;
  font-size: 1em;
}
.inputBox {
  background-color: #f8f8f8;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}