@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
}

#overlay {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #00000070;
  position: fixed;
  display: none;
  z-index: 999;
}

.page-content-options {
  position: relative;
  border: 2px solid transparent;
}
.page-content-options img.option {
  display: block;
  width: 16px !important;
  margin: 0 5px;
  cursor: pointer;
}
.page-content-options img.option:first-of-type {
  margin-left: 0;
}
.page-content-options img.option:last-of-type {
  margin-right: 0;
}

.page-content-options.active {
  border: 2px dashed #000 !important;
  background: #fff !important;
  cursor: pointer !important;
  z-index: 99999999999 !important;
}

#login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  /* Set a style for the submit button */
}
#login-wrapper form {
  min-width: 350px;
}
#login-wrapper .input-container {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}
#login-wrapper .icon {
  padding: 10px;
  background: dodgerblue;
  color: white;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#login-wrapper .input-field {
  width: 100%;
  padding: 10px;
  outline: none;
}
#login-wrapper .input-field.error {
  border: 2px solid red;
}
#login-wrapper .input-field:focus {
  border: 2px solid dodgerblue;
}
#login-wrapper .btn {
  background-color: dodgerblue;
  color: white;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}
#login-wrapper .btn:hover {
  opacity: 1;
}

/*# sourceMappingURL=core.css.map */
