html,
body {
  margin: 0;
  padding: 0;
  font-size: 12px;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

main {
  min-height: 100vh;
  flex-direction: row;
}

section {
  display: flex;
  flex-direction: column;
}

.left,
.right {
  display: flex;
  min-height: 100vh;
}

.left {
  width: 60%;
  background-color: #f2f2f2;
  flex-direction: row;
  justify-content: center;
}
.left .card {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5%;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  min-height: 100vh;
}
.left .card h1 {
  font-family: "Rubik", sans-serif;
  font-size: 1.5em;
  width: 100%;
  text-align: center;
  color: rgb(139, 26, 26);
}
.left .card form {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  width: 80%;
  font-family: "Oswald", sans-serif;
  border-radius: 5px;
  background-color: #e6e6e6;
  padding: 5%;
  box-sizing: border-box;
}
.left .card form .row {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 3%;
}
.left .card form .row .column {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1% 3%;
  box-sizing: border-box;
}
.left .card form .row:nth-of-type(1) .column:nth-of-type(2) {
  justify-content: center;
}
.left .card form label {
  color: rgb(139, 26, 26);
  font-size: 1em;
  font-family: "Rubik", sans-serif;
}
.left .card form input[type=text],
.left .card form input[type=password] {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgb(139, 26, 26);
  background-color: transparent;
  outline: unset;
  font-size: 1em;
  font-family: "Rubik", sans-serif;
}
.left .card form input[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1% 2%;
  box-sizing: border-box;
  background-color: rgb(139, 26, 26);
  color: rgb(255, 255, 255);
  margin-left: 3%;
  font-family: "Rubik", sans-serif;
  border-radius: 5px;
  border: 0;
  outline: unset;
  cursor: pointer;
}
.left .card form input[type=submit]:hover {
  background-color: rgb(186, 39, 74);
}
.left .card form a {
  background-color: rgb(34, 9, 1);
  color: rgb(255, 255, 255);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1em;
  font-family: "Rubik", sans-serif;
  padding: 1em;
  box-sizing: border-box;
  text-decoration: none;
}
.left .card form a:hover {
  background-color: rgb(139, 26, 26);
}
.left .card form #register_error_result {
  color: rgb(186, 39, 74);
  font-size: 1.5em;
}

.right {
  width: 35%;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.right svg {
  width: 80%;
}/*# sourceMappingURL=register_vendor.css.map */