.login,
.forgot {
  margin: 25px 20px;
}

body,
html {
  height: 100%;
  width: 100%;
}

body, button, input, select, textarea {
  font-family: BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}

body {
  margin: 0;
}



header {
  background-image: linear-gradient(-238deg, #3D46B2 13%, #4A1B97 88%);
  width: 100%;
  height: 60px;
}

@media (min-width: 768px) {
  header {
    background-image: none;
    width: 60%;
    display: inline-block;
    margin-top: 100px;
    height: 0px;
  }
}

header img {
  height: 15px;
  margin: 20px;
}

@media (min-width: 768px) {
  header img {
    height: 18px;
  }
}

@media (min-width: 1024px) {
  header img {
    margin-left: 50px;
  }
}

main {
  z-index: 1;
  position: relative;
}

.login,
.forgot {
  width: 90%;
}

@media (min-width: 768px) {
  .login,
  .forgot {
    width: 60%;
    margin-top: 40px;
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .login,
  .forgot {
    margin-left: 50px;
    width: 45%;
  }
}

.login h1,
.forgot h1 {
  font-size: 2.5em;
  color: #262533;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 768px) {
  .login h1,
  .forgot h1 {
    font-size: 3.125em;
  }
}

.login p,
.forgot p {
  font-size: 1em;
  color: #545664;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 768px) {
  .login p,
  .forgot p {
    font-size: 1.25em;
  }
}

.login a,
.forgot a {
  text-decoration: none;
  color: #3D46B2;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .login a,
  .forgot a {
    clear: right;
    float: right;
  }
}

form {
  margin-top: 25px;
}

  form label {
    color: #545664;
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
  }

  form input.textInput {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.25em;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border: #D1D1D2 1px solid;
    display: block;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    color: #545664;
  }

    form input.textInput:focus {
      outline: none;
      border: #3D46B2 1px solid;
      -webkit-box-shadow: 0 2px 4px rgba(69, 80, 159, 0.2);
      box-shadow: 0 2px 4px rgba(69, 80, 159, 0.2);
    }

    form input.textInput::-webkit-input-placeholder {
      opacity: .8;
      font-weight: 300;
    }

    form input.textInput:-ms-input-placeholder {
      opacity: .8;
      font-weight: 300;
    }

    form input.textInput::-ms-input-placeholder {
      opacity: .8;
      font-weight: 300;
    }

    form input.textInput::placeholder {
      opacity: .8;
      font-weight: 300;
    }

  form input.checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border: #545664 1px solid;
    border-radius: 3px;
    float: left;
  }

    form input.checkbox:checked {
      background-color: #3D46B2;
      border: #3D46B2 1px solid;
    }

    form input.checkbox:focus {
      outline: none;
      border: #3D46B2 1px solid;
      -webkit-box-shadow: 0 2px 4px rgba(69, 80, 159, 0.2);
      box-shadow: 0 2px 4px rgba(69, 80, 159, 0.2);
    }

    form input.checkbox:checked:after {
      content: '\2714';
      font-size: 1em;
      position: relative;
      top: -1px;
      left: 3px;
      color: #99a1a7;
    }

  form label.checkboxLabel {
    font-weight: 200;
    margin-bottom: 25px;
    float: left;
    padding-left: 5px;
  }

  form button {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4852CF), to(#3D46B2));
    background-image: linear-gradient(-180deg, #4852CF 0%, #3D46B2 100%);
    -webkit-box-shadow: 0 2px 4px 0 rgba(69, 80, 159, 0.2);
    box-shadow: 0 2px 4px 0 rgba(69, 80, 159, 0.2);
    width: 100%;
    display: block;
    font-weight: 700;
    color: #fff;
    background-color: #3D46B2;
    padding: 15px;
    border-radius: 30px;
    font-size: 1.25em;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    border: none;
  }

@media (min-width: 768px) {
  form button {
    width: 50%;
    float: right;
  }
}

form button:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(69, 80, 159, 0.4);
  box-shadow: 0 3px 8px 0 rgba(69, 80, 159, 0.4);
}

form button:active {
  outline: none;
  -webkit-box-shadow: 0 0px 2px 0 rgba(69, 80, 159, 0.2);
  box-shadow: 0 0px 2px 0 rgba(69, 80, 159, 0.2);
}

.sidebar {
  display: none;
}

@media (min-width: 768px) {
  .sidebar {
    display: inline-block;
    height: 100%;
    width: 33%;
    float: left;
    z-index: 10 !Important;
    position: relative;
  }
}


.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, #3A530F 0%, #6dc030 100%);
  opacity: .8;
}

.sidebar img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
}

.forgot {
  position: absolute;
  display: none;
  top: 0;
}

@media (min-width: 768px) {
  .forgot {
    left: 33%;
    top: 0;
  }
}

.modal {
  background-image: linear-gradient(16deg, #4A1B97 2%, #3D46B2 100%);
  text-align: center;
  padding: 5%;
  border-radius: 5px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 15px;
  width: 80%;
  left: 5%;
  z-index: 100;
  display: none;
}

@media (min-width: 768px) {
  .modal {
    width: 40%;
    left: 30%;
    padding: 20px 5%;
  }
}

@media (min-width: 1024px) {
  .modal {
    width: 20%;
    left: 35%;
    padding: 20px 5%;
  }
}

.modal button {
  background: none;
  border: 1px #fff solid;
  display: block;
  float: none;
  margin: 0 auto;
  -webkit-transition: background-color .2s ease-out, color .2s ease-out;
  transition: background-color .2s ease-out, color .2s ease-out;
  width: 70%;
}

.modal input {
  text-align: center;
}

.modal button:hover {
  background-color: #fff;
  color: #3D46B2;
}

.modal h1 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5em;
}

.modal a {
  color: #B5B5B5;
  font-size: 1em;
  display: block;
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
  text-decoration: none;
}

  .modal a:hover {
    color: #fff;
  }


#imaginary_container {
  margin-top: 20%; /* Don't copy this */
}

.stylish-input-group .input-group-addon {
  background: white !important;
}

.stylish-input-group .form-control {
  border-right: 0;
  box-shadow: 0 0 0;
  border-color: #ccc;
}

.stylish-input-group button {
  border: 0;
  background: transparent;
}

.font-value {
  font-size: smaller;
  font-weight: normal;
  margin-top: 10px;
}

.pd-left {
  padding-left: 0px;
}
