* {
  padding: 0;
  margin: 0;
}

@import "https://fonts.googleapis.com/css?family=Balsamiq+Sans";

html {
  font-family: Roboto, Rubik, "Lucida Sans", "Lucida Sans Regular",
    "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;

  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  /* background: -webkit-linear-gradient(top, #0f2f53, rgb(182, 242, 255)); */
  background-color: whitesmoke;
  height: 100%;
}

.register-container {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  font-family: "Balsamiq Sans", sans-serif;
}

/* .footer {
  grid-column: 1/13;
  grid-row: 12/13;
  display: flex;
  justify-content: center;
  align-items: center;
  color: beige;
  background: -webkit-linear-gradient(top, #0f2f53, #264e7d);
} */

.footer {
  grid-column: 1/13;
  grid-row: 12/13;
  overflow: hidden;
}

.header {
  grid-column: 1/13;
  grid-row: 1/2;
  overflow: hidden;
}

.register-header {
  grid-column: 4/9;
  grid-row: 3/4;
  display: flex;
  justify-content: center;
  align-items: center;
  color: beige;
  /* background: -webkit-linear-gradient(top, #0f2f53, #264e7d); */
  background: linear-gradient(
    180deg,
    rgba(9, 94, 121, 1) 0%,
    rgba(100, 149, 237, 1) 100%
  );
}

/* .nav-bar {
  grid-column: 1/13;
  grid-row: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: beige;
  background: -webkit-linear-gradient(top, #0f2f53, #264e7d);
} */

.register-form-container {
  /* background: -webkit-linear-gradient(top, #0f2f53, rgb(182, 242, 255)); */
  background: linear-gradient(
    180deg,
    rgba(9, 94, 121, 1) 0%,
    rgba(100, 149, 237, 1) 100%
  );
  border: 1px solid white;
  border-radius: 10%;
  grid-column: 4/9;
  grid-row: 4/10;
  margin-top: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.register-container .field-block {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.register-container input,
.register-container label {
  font-weight: 600;
}

.register-container input {
  padding: 5px;
  font-family: "Balsamiq Sans", sans-serif;
}

.register-container form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[type="submit"],
.register-container button {
  border: 1px solid #345479;
  background: #345479;
  border-radius: 10%;
  color: white;
  width: 100px;
  cursor: pointer;
  padding: 10px;
  font-weight: bold;
  justify-self: center;
  align-self: center;
}

[type="submit"]:hover,
.register-container button {
  border: 1px solid #337ab7;
  background: white;
  border-radius: 15%;
  color: #337ab7;
}

.hidden {
  visibility: hidden;
}

.visible {
  visibility: visible;

  color: red;
  font-size: small;
}

@media only screen and (max-height: 807px) {
  .register-form-container {
    grid-row: 4/12;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 1110px) {
  .register-header {
    grid-column: 2/12;
    grid-row: 3/4;
  }

  .register-form-container {
    grid-column: 2/12;
    grid-row: 4/11;
    margin-bottom: 10px;
  }
}
