
.field-row {
  display: grid;
  grid-template-columns: 160px 80px 1fr;
}
.field-row:nth-child(odd) {
  background-color: #f8f8f8;
}
.field-row:nth-child(even) {
  background-color: white;
}

.field-row > * {
  border-right: solid 1px #eee;
  vertical-align: center;
  padding: 0.5em;
}
.field-row > *:last-child {
  border-right-style: none;
}
.field-row > span {
  text-align: center;
}
.field-row.required > span {
  color: orange;
}
.field-row > label:after {
  display: inline-block;
  height: 100%;
}

.button-line {
  margin: 1em 0;
  text-align: center;
}
.button-line button {
  background-color: #ACDE00;
  color: white;
  border-style: none;
  border-radius: 4px;
  height: 36px;
  line-height: 36px;
  padding: 0 3em;
}

.member-profile-form h3 {
  background-color: #BBBBBB;
  color: white;
  margin: 0;
  padding: 8px 10px;
  font-size: 1.1em;
}
.member-profile-form section {
  border: 1px solid #ccc;
}
.member-profile-form section + section {
  margin-top: 1em;
}

.member-profile-form input[type="checkbox"],
.member-profile-form input[type="radio"] {
  display: inline-block;
}

.member-profile-form input.part,
.member-profile-form select.part {
  display: inline-block;
  width: 100px;
}

.address-editor .address-part {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 0.3em 0;
}

.checklist {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}

.subscribe-magazine {
  display: grid;
  grid-template-columns: 50% 50%;
}

input[type='password'] {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #ccc !important;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}


/* change-password */
.member-change-password {
  background-color: white;
  padding: 5px;
}

.member-change-password h2 {
  background-color: #2978BF;
  color: white;
  margin: 0 0 1em;
  font-size: 1.2em;
  padding: 5px;
}

.member-change-password-form {
   border: solid 2px #DDDDDD;
}

/* login */

.member-login {
  background-color: white;
  padding: 1.5em 10px;  
  border: 1px solid #ccc;
  border-radius: 6px;
}