:root {
 --avengers-fw-font-family: "Helvetica Neue", "Segoe UI", helvetica, verdana, sans-serif; 
 --avengers-fw-font-size: 13px;
}

html,
body {
  height: 100%;
  margin: 0px;
  /* background-image: linear-gradient(135deg, #FAB2FF 10%, #1904E5 100%); */
  /* background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;*/
  font-family: var(--avengers-fw-font-family);
  /* color: #333333; */ 
}

.box-form {
  margin: 0 auto;
  /* width: 80%; */
  background: #FFFFFF;
  /* border-radius: 10px; */
  overflow: hidden;
  height: 100vh;
  display: flex;
  /* flex: 1 1 100%; */
  align-items: stretch;
  justify-content: space-between;
  /* box-shadow: 0 0 20px 6px #090b6f85; */
}

@media (max-width: 980px) {
  .box-form {
    flex-flow: wrap;
    text-align: center;
    align-content: center;
    align-items: center;
  }
}

/* .box-form div {
  height: 100%;
} */
.box-form .left {
  color: white;
  background: black;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-image: url("download.jpg"); */
  overflow: hidden;
  object-fit: fill;
}

.box-form .left .overlay {
  width: 10%;
  position: absolute;
  top: 0px;
  height: fit-content;
  box-sizing: border-box;
}

.box-form .left .overlay h1 {
  font-size: 10vmax;
  line-height: 1;
  font-weight: 900;
  margin-top: 40px;
  margin-bottom: 20px;
}

.box-form .left .overlay span p {
  margin-top: 30px;
  font-weight: 900;
}

.box-form .left .overlay span a {
  background: #3b5998;
  color: #FFFFFF;
  margin-top: 10px;
  padding: 14px 50px;
  border-radius: 100px;
  display: inline-block;
  box-shadow: 0 3px 6px 1px #042d4657;
}

.box-form .left .overlay span a:last-child {
  background: #1dcaff;
  margin-left: 30px;
}

.box-form .right {
  padding: 40px;
  max-width: 500px;
  min-width: 400px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .box-form .right {
    width: 100%;
  }
}

.box-form .right h5 {
  font-size: 6vmax;
  line-height: 0;
}

.box-form .right p {
  font-size: 14px;
  color: #B0B3B9;
}

.box-form .right .inputs {
  overflow: hidden;
}

.box-form .right input {
  width: 100%;
  padding: 10px;
  margin-top: 25px;
  font-size: var(--avengers-fw-font-size);
  border: none;
  outline: none;
  border-bottom: 2px solid #B0B3B9;
}

.box-form .right .remember-me--forget-password {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-form .right .remember-me--forget-password input {
  margin: 0;
  margin-right: 7px;
  width: auto;
}

.box-form .right button {
  /* float: right;
  font-size: 16px;
  padding: 12px 35px;
  width: 100%;
  display: inline-block;
  border: 0;
  outline: 0;
  background-image: linear-gradient(135deg, #70F570 10%, #49C628 100%); */

  /* float: right; */
  color: #fff;
  background-color: #005B9F;
  font-size: var(--avengers-fw-font-size);
  font-family: var(--avengers-fw-font-family);
  padding: 12px 35px;
  width: 100%;
  border-radius: 2px;
  display: inline-block;
  border: 2px solid #003E6A;
}

label {
  display: block;
  position: relative;
  margin-left: 30px;
}

label::before {
  content: ' \f00c';
  position: absolute;
  /* font-family: FontAwesome; */
  background: transparent;
  border: 3px solid #70F570;
  border-radius: 4px;
  color: transparent;
  left: -30px;
  transition: all 0.2s linear;
}

label:hover::before {
  /* font-family: FontAwesome; */
  content: ' \f00c';
  color: #fff;
  cursor: pointer;
  background: #70F570;
}

label:hover::before .text-checkbox {
  background: #70F570;
}

label span.text-checkbox {
  display: inline-block;
  height: auto;
  position: relative;
  cursor: pointer;
  transition: all 0.2s linear;
}

label input[type="checkbox"] {
  display: none;
}

.text-header {
  font-family: var(--avengers-fw-font-family);
  font-size: 20px;
  font-weight: bold;
}

input[type="text"].form-control,
input[type="password"].form-control {
  font-family: var(--avengers-fw-font-family);
  font-size: var(--avengers-fw-font-size);
  outline: none;
  width: calc(100% - 36px);
  border: 2px solid #CCC;
  padding: 16px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.form-error {
  color: red;
  font-weight: 500;
  padding: 20px 0px;
  font-family: var(--avengers-fw-font-family);
  font-size: var(--avengers-fw-font-size);
}

input[type="text"].form-control:hover,
input[type="password"].form-control:hover {
  border: 2px solid gray;
}

input[type="text"].form-control:focus,
input[type="password"].form-control:focus {
  border: 2px solid #003E6A;
}

input[type="text"].form-control:active,
input[type="password"].form-control:active {
  border: 2px solid #003E6A;
}

button {
  outline: none;
  /* background: #E91E63;
  color: #FFF; */
  padding: 16px;
  display: block;
  width: 100%;
  border: 1px solid darkgray;
  text-transform: uppercase;
  font-size: var(--avengers-fw-font-size);
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #0267b4;
  box-shadow: 5px 5px 5px #CCC;
}

button.full-btn:active {
  background-color: #0372c7;
}

button.full-btn:disabled {
  background-color: lightgrey;
  border: 2px solid rgba(153, 151, 151, 0.685);
}

.backdrop {
  width: 100%;
  height: 100%;
  opacity: 40%;
}

.overlay-image {
  padding: 40px;
  width: 100%;
}

.left-center {
  position: absolute;
  top: 40%;
  left: 15%;
  overflow: hidden;
  border-left: 1px solid;
  padding-left: 20px;
}

.left-center-text-large {
  font-size: 2.5vw;
  font-weight: 600;
}

.left-center-text-small {
  font-size: 1vw;
  font-weight: 400;
}

/* progress bar */
.pure-material-progress-linear {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  height: 0.25em;
  color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
  background-color: rgba(var(--pure-material-primary-rgb, 33, 150, 243), 0.12);
  font-size: 16px;
}

.pure-material-progress-linear::-webkit-progress-bar {
  background-color: transparent;
}

/* Determinate */
.pure-material-progress-linear::-webkit-progress-value {
  background-color: currentColor;
  transition: all 0.2s;
}

.pure-material-progress-linear::-moz-progress-bar {
  background-color: currentColor;
  transition: all 0.2s;
}

.pure-material-progress-linear::-ms-fill {
  border: none;
  background-color: currentColor;
  transition: all 0.2s;
}

/* Indeterminate */
.pure-material-progress-linear:indeterminate {
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, currentColor 50%, currentColor 60%, transparent 60%, transparent 71.5%, currentColor 71.5%, currentColor 84%, transparent 84%);
  animation: pure-material-progress-linear 2s infinite linear;
}

.pure-material-progress-linear:indeterminate::-moz-progress-bar {
  background-color: transparent;
}

.pure-material-progress-linear:indeterminate::-ms-fill {
  animation-name: none;
}

@keyframes pure-material-progress-linear {
  0% {
      background-size: 200% 100%;
      background-position: left -31.25% top 0%;
  }
  50% {
      background-size: 800% 100%;
      background-position: left -49% top 0%;
  }
  100% {
      background-size: 400% 100%;
      background-position: left -102% top 0%;
  }
}
