div.user-registration:first-of-type {
  max-width: 450px;
  margin: 24px auto !important;
  padding: 24px;
  border-radius: 16px;

  background-color: #ffffff;
  border: none solid #dce3f0;
  box-shadow: 0 20px 40px rgba(0, 25, 101, 0.08);

  font-family: inherit;
  color: #001965;
  box-sizing: border-box;
  position: relative;
}

/* Optional logo image */
div.user-registration:first-of-type::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  background: url('https://i0.wp.com/nnhcorner.com/wp-content/uploads/2025/06/Asset-6.png?resize=300%2C121&ssl=1') no-repeat center top;
  background-size: contain;
  height: 80px;
  margin-bottom: 8px;
}

div.user-registration:first-of-type h2 {
  font-size: 22px;
  font-weight: 700;
  color: #001965;
  margin-bottom: 4px;
}

div.user-registration:first-of-type p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

div.user-registration:first-of-type label {
  font-size: 14px;
  font-weight: 600;
  color: #001965;
  display: block;
  margin-bottom: 6px;
}

div.user-registration:first-of-type input[type="text"],
div.user-registration:first-of-type input[type="email"],
div.user-registration:first-of-type input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #d1dbe8;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  color: #001965;
  transition: all 0.2s ease-in-out;
}

div.user-registration:first-of-type input[type="text"]:focus,
div.user-registration:first-of-type input[type="email"]:focus,
div.user-registration:first-of-type input[type="password"]:focus {
  border-color: #001965;
  box-shadow: 0 0 0 3px rgba(0, 25, 101, 0.15);
  outline: none;
}

div.user-registration:first-of-type input[type="submit"] {
  background-color: #001965 !important;
  color: white !important;
  border: none;
  padding: 14px;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 25, 101, 0.25);
}

div.user-registration:first-of-type input[type="submit"]:hover {
  background-color: #001965 !important;
  box-shadow: 0 5px 20px rgba(0, 25, 101, 0.4);
}

div.user-registration:first-of-type .ur-form-row {
  width: 100%;
}

div.user-registration:first-of-type .ur-form-row input[type="checkbox"] {
  margin-right: 6px;
}

div.user-registration:first-of-type .ur-form-row label[for*="remember"] {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #001965;
}