@charset "UTF-8";
:root {
  --secundary-color: #3cbfb6;
}

button:focus {
  outline: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}

button:hover {
  cursor: pointer;
  background-color: #6371b5;
}

.btn {
  padding: 10px 24px;
  background-color: transparent;
  color: #5261ac;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 100;
  border: none;
}

.btn-primary {
  background-color: #5261ac;
  color: #fff;
  font-size: 1.2rem;
}

.btn-danger {
  background-color: #b04848;
  color: #fff;
  font-size: 1.2rem;
}

.btn-danger:hover {
  background-color: #c26969;
}

button.loading {
  color: transparent;
  position: relative;
}

img.loader {
  display: none;
}

button.loading img.loader {
  height: 18px;
  width: 18px;
  position: absolute;
  left: calc(50% - 9px);
  display: initial;
  border: none !important;
}

input[type="text"],
input[type="search"],
input[type="password"],
textarea {
  padding: 8px;
  font-size: 1rem;
  width: 100%;
  border: 1px solid lightgray;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  margin-top: 4px;
  margin-bottom: 4px;
  outline: none;
  border-radius: 4px;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 5px #5261ac;
          box-shadow: 0 0 5px #5261ac;
  border: 1px solid #5261ac;
}

::-webkit-input-placeholder {
  color: #b6b6b6;
}

:-ms-input-placeholder {
  color: #b6b6b6;
}

::-ms-input-placeholder {
  color: #b6b6b6;
}

::placeholder {
  color: #b6b6b6;
}

input[type="text"].input-error,
input[type="search"].input-error,
input[type="password"].input-error {
  border: 2px solid #ff3636;
}

:root {
  --secundary-color: #3cbfb6;
}

.loader {
  width: 100%;
  border-radius: 10px;
  border: 1px solid lightgray;
  position: relative;
  padding: 1px;
  height: 8px;
}

.loader:before {
  content: "";
  border: 1px solid transparent;
  border-radius: 10px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.loader .loaderBar {
  position: absolute;
  border-radius: 10px;
  top: 0;
  right: 100%;
  bottom: 0;
  left: 0;
  background: #5261ac;
  width: 0;
  -webkit-animation: borealisBar 1s linear infinite;
          animation: borealisBar 1s linear infinite;
}

@-webkit-keyframes borealisBar {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  30% {
    left: 0%;
    right: 50%;
    width: 50%;
  }
  70% {
    right: 0%;
    left: 50%;
    width: 50%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}

@keyframes borealisBar {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  30% {
    left: 0%;
    right: 50%;
    width: 50%;
  }
  70% {
    right: 0%;
    left: 50%;
    width: 50%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
  color: black;
  background-color: #ebe9e9;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container {
  width: 40%;
  max-width: 500px;
  padding: 1rem;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.container h1 {
  margin-bottom: 3rem;
}

.container input[type="password"],
.container input[type="text"] {
  margin-bottom: 1rem;
}

.container input[type="submit"] {
  margin-top: 1rem;
}

@media screen and (max-width: 1024px) {
  .container {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
  .container {
    width: 100% !important;
    margin: 0.5rem;
  }
}

.clear-bg {
  border: 1px solid lightgray;
  border-radius: 4px;
  background: #fff;
}

label {
  display: block;
}

.full-width {
  width: 100%;
}

.error-block {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  border: 1px solid;
  border-radius: 4px;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.hide {
  display: none;
}

.centeredTitle {
  text-align: center;
  font-size: 1.5em;
  margin: 30px;
}

.valid {
  color: #6bbd35;
}

.valid:before {
  position: relative;
  left: 0;
  margin-right: 0.5rem;
  content: "✓";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: #aa444e;
}

.invalid:before {
  position: relative;
  left: 0;
  margin-right: 0.5rem;
  content: "✖";
}

.left-right-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}

.left-right-con * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
/*# sourceMappingURL=style.css.map */