.register-user-form {
  padding: 10px;
}

.gr-form {
  background-color: #fafafa;
  max-width: 450px;
  padding: 20px;
  margin: 20px auto 20px;
  border: 2px solid #5062dc;
}

@media screen and (min-width: 1024px) {
  .gr-form {
    max-width: 768px;
  }
}

.gr-form h1 {
  font-weight: bold;
  color: #5062dc;
  border-bottom: 2px solid #5062dc;
  text-align: center;
  margin-bottom: 20px;
}

.gr-form label {
  display: block;
  margin-bottom: 5px;
  color: #111;
  font-weight: medium;
  font-family: Quicksand, Helvetica, Arial, Lucida, sans-serif;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.input-row-wide {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media screen and (min-width: 1024px) {
  .input-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

}

.gr-form .input-control {
  margin-bottom: 15px;
}

.input-control-off {
  position: absolute;
  left: -999999999px;
}

.gr-form input[type="text"],
.gr-form select {
  background-color: transparent;
  border: 2px solid #5062dc;
  width: 100%;
  padding: 10px;
  background-color: #fff;
}

.gr-form input[type="submit"] {
  background-color: #5062dc;
  padding: 15px;
  margin: 15px 0;
  color: #fff;
  width: 100%;
  border: 2px solid #5062dc;
  font-size: 16px;
  cursor: pointer;
}

.gr-form input[type="submit"]:hover {
  background-color: transparent;
  color: #5062dc;
}

.gr-form .input-control.invalid input,
.gr-form .input-control.invalid select
 {
  border: 1px solid red;
  background: rgba(255, 0, 0, 0.1);
  color: red;
}

.gr-form .input-control.valid input {
  border: 1px solid green;
}

.gr-form .error {
  color: red;
  font-weight: 600;
}


