* {
  font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0;
}

html,
body {
  height: 100vh;
  width: 100vw;
  margin: 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f3f2f2;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: #868ba1;
}

label {
  font-size: 12.5px;
  color: #000;
  opacity: 0.8;
  font-weight: 400;
}

form {
  padding: 40px 30px;
  background: #fefefe;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 350px;
}
form .logo {
  letter-spacing: -2px;
  font-size: 36px;
  font-weight: 700;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: #1b84e7;
}
form p {
  line-height: 155%;
  margin-bottom: 5px;
  font-size: 14px;
  color: #212529;
  opacity: 0.65;
  font-weight: 400;
  margin-bottom: 20px;
}
form p span {
  color: #868ba1;
}

a.discrete {
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  border-bottom: solid 1px rgba(0, 0, 0, 0);
  padding-bottom: 4px;
  margin-left: auto;
  font-weight: 300;
  margin-top: 40px;
}
a.discrete:hover {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

button {
  -webkit-appearance: none;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
  margin-top: 5px;
  background-image: linear-gradient(to right, #1b84e7 0%, #6f42c1 100%);
  background-color: #0385ff;
  color: #fff;
  font-size: 14px;
  margin-left: auto;
  font-weight: 500;
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.13);
  border: none;
  outline: 0;
}
button:hover {
  box-shadow: 0 2px 6px -1px rgba(27, 132, 231, 0.65);
}
button:hover:active {
  transform: scale(0.99);
}

.btn {
  -webkit-appearance: none;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
  margin-top: 5px;
  background-image: linear-gradient(to right, #1b84e7 0%, #6f42c1 100%);
  background-color: #0385ff;
  color: #fff;
  font-size: 14px;
  margin-left: auto;
  font-weight: 500;
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.13);
  border: none;
  outline: 0;
}
.btn:hover {
  box-shadow: 0 2px 6px -1px rgba(27, 132, 231, 0.65);
}
.btn:hover:active {
  transform: scale(0.99);
}

.btn-primary {
  background-image: unset;
  background-color: #1b84e7;
}

.btn-goetu {
  background-image: url(/images/newlogo.svg?c9a0371c7b4676d1ff752f4b7e791b42);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: 15px 7px;
}

input {
  display: block;
  width: 100%;
  padding: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 3px;
  text-indent: 35px;
}
input:focus {
  border: solid 1px #8ec2f3;
  outline: 0;
  box-shadow: 0 2px 6px -8px rgba(142, 194, 243, 0.45);
}

.floating-label {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}
.floating-label label {
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  opacity: 0;
  padding-left: 44px;
}
.floating-label input {
  display: flex;
}
.floating-label .icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 36px;
  width: 40px;
  display: flex;
}
.floating-label .icon svg {
  height: 25px;
  width: 25px;
  margin: auto;
  opacity: 0.15;
}
.floating-label input:not(:-moz-placeholder-shown) + label {
  transform: translateY(-10px);
  opacity: 0.7;
}
.floating-label input:not(:-ms-input-placeholder) + label {
  transform: translateY(-10px);
  opacity: 0.7;
}
.floating-label input:not(:placeholder-shown) + label {
  transform: translateY(-10px);
  opacity: 0.7;
}
.floating-label input:valid:not(:-moz-placeholder-shown) + label + .icon svg {
  opacity: 1;
}
.floating-label input:valid:not(:-ms-input-placeholder) + label + .icon svg {
  opacity: 1;
}
.floating-label input:valid:not(:placeholder-shown) + label + .icon svg {
  opacity: 1;
}
.floating-label input:valid:not(:-moz-placeholder-shown) + label + .icon svg path {
  fill: #1b84e7;
}
.floating-label input:valid:not(:-ms-input-placeholder) + label + .icon svg path {
  fill: #1b84e7;
}
.floating-label input:valid:not(:placeholder-shown) + label + .icon svg path {
  fill: #1b84e7;
}
.floating-label input:not(:valid):not(:focus) + label + .icon {
  -webkit-animation-name: shake-shake;
          animation-name: shake-shake;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

@-webkit-keyframes shake-shake {
  0% {
    transform: translateX(-3px);
  }
  20% {
    transform: translateX(3px);
  }
  40% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  80% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes shake-shake {
  0% {
    transform: translateX(-3px);
  }
  20% {
    transform: translateX(3px);
  }
  40% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  80% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0px);
  }
}
.session {
  display: flex;
  flex-direction: row;
  width: auto;
  height: auto;
  margin: auto auto;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.12);
}

.left {
  width: 360px;
  height: auto;
  min-height: 100%;
  position: relative;
  background-image: url(/images/plant1.jpg?6bb8f7e1eb3b8f8853ac425583d936da);
  background-size: cover;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.mg-b-40 {
  margin-bottom: 40px;
}

a {
  color: #1b84e7;
}

.or {
  line-height: 155%;
  margin-bottom: 5px;
  font-size: 16px;
  color: #212529;
  opacity: 0.65;
  font-weight: 400;
  margin: 20px 0;
  display: block;
  width: 100%;
  text-align: center;
}

.separator {
  position: relative;
  text-align: center;
  width: 100%;
}
.separator hr {
  width: 100%;
  margin: 30px 0;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.separator .or {
  width: 65px;
  margin-left: -32.5px;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  z-index: 1;
  opacity: 1;
  top: 0;
}

@media only screen and (max-width: 786px) {
  .left {
    display: none;
  }
}
