body {
  font-family: 'Lato', sans-serif;
  background-image: url('/img/mobile-bg.png');
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #fff;
}

.heading {
  height: 48px;
  margin: 2rem auto 4.5rem;
  width: 226px;
}

form {
  background: #ffffff;
  max-width: 420px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

fieldset {
  border: none;
}

form h1,
form h2 {
  color:#01579b;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

form h1 {
  font-size: 24px;
}

form h2 {
  font-size: 20px;
  text-align: center;
}

form p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 200;
}

form .bw-input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  font-weight: 200;
}

form label {
  margin-bottom: 5px;
}
form .bw-checkbox-label {
  font-size: 0.8rem;
  color: #444;
}

form .bw-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

form .bw-checkbox-container,
form .bw-radio-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

form .bw-checkbox {
  margin-right: 10px;
  align-self: flex-start;
  flex-basis: calc(5% - 10px);
}
form .bw-checkbox-label,
form .bw-radio-label {
  flex-basis: 88%;
  margin: 0.2rem 0;
}
form .bw-radio {
  transform: scale(1.5);
  flex-basis: 13%;
}
form .bw-radio-label {
  align-self: flex;
  flex-basis: 80%;
  font-size: 1.4rem;
  font-weight: 200;
}

form .bw-input-error {
  flex-basis: 100%;
  display: block;
  color: darkred;
  clear: left;
  float: left;
  font-weight: 200;
  margin-bottom: 1rem;
}

form .bw-action {
  /* background-color: #4CAF50; */
  background-color: #01579b; 
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}
form .bw-action.bw-button-primary {
  background-color: #01579b; 
}
form .bw-action.bw-button-secondary {
  background-color: #a0a0a0; 
}

form .bw-action:hover {
  background-color: #45a049;
}

form img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto 1rem;
  cursor: pointer;
}
