@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #352cab;
  --color-666: #666;
  --color-ccc: #CCC;
  --color-999: #999;
  --color-333: #333;
  --color-555: #555;
  --color-efefef: #eFeFeF;
  --color-fff: #FFF;
  --border-color: #dbdbdb;
  --background-light: #e6e6e6;
  --error-color: #c80000;
  --success-color: #00ad5f;
  --font-family: "Poppins", sans-serif;
}

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

body,
html {
  height: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  background-color: var(--background-light);
}

a {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-666);
  margin: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-666);
  margin: 0;
}

ul,
li {
  margin: 0;
  list-style-type: none;
}

input,
textarea {
  outline: none;
  border: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: none;
  -webkit-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: var(--color-ccc);
}

input:-moz-placeholder {
  color: var(--color-ccc);
}

input::-moz-placeholder {
  color: var(--color-ccc);
}

input:-ms-input-placeholder {
  color: var(--color-ccc);
}

textarea::-webkit-input-placeholder {
  color: var(--color-ccc);
}

textarea:-moz-placeholder {
  color: var(--color-ccc);
}

textarea::-moz-placeholder {
  color: var(--color-ccc);
}

textarea:-ms-input-placeholder {
  color: var(--color-ccc);
}

button {
  outline: none !important;
  border: none;
  background: 0 0;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

.txt1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-999);
  line-height: 1.4;
}

.txt2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-666);
  line-height: 1.4;
}

.txt3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-666);
  line-height: 1.4;
}

.hov1:hover {
  color: var(--primary-color);
}

.template-container {
  width: 100%;
  margin: 0 auto;
}

.login-container {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-wrap: wrap;
}

.login-form-wrapper {
  width: 520px;
  min-height: 100vh;
  background: var(--color-fff);
  border-radius: 2px;
  position: relative;
}

.login-bg-img {
  background-image: url("https://pv-app-data.nyc3.digitaloceanspaces.com/assets/background/qr/bg-02.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: calc(100% - 520px);
  position: relative;
  z-index: 1;
}

.login-bg-img::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary-color);
  background: -webkit-linear-gradient(
    bottom,
    #352cab,
    #352cab
  );
  background: -o-linear-gradient(
    bottom,
    #352cab,
    #352cab
  );
  background: -moz-linear-gradient(
    bottom,
    #352cab,
    #352cab
  );
  background: linear-gradient(
    bottom,
    #352cab,
    #352cab
  );
  opacity: 0.2;
}

.login-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.login-form-title {
  display: block;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 39px;
  color: var(--color-333);
  line-height: 1.2;
  text-align: left;
}

.input-wrapper {
  width: 100%;
  position: relative;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 40px;
}

.label-wrapper {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-999);
  line-height: 1.2;
  padding-left: 2px;
}

.input-form {
  display: block;
  width: 100%;
  height: 50px;
  background: 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-555);
  line-height: 1.2;
  padding: 0 2px;
  border: 1px solid var(--color-efefef) ;
}

.focus-input-form {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input-form::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: var(--primary-color);
  background: -webkit-linear-gradient(
    45deg,
    #352cab,
    #352cab
  );
  background: -o-linear-gradient(
    45deg,
    #352cab,
    #352cab
  );
  background: -moz-linear-gradient(
    45deg,
    #352cab,
    #352cab
  );
  background: linear-gradient(
    45deg,
    #352cab,
    #352cab
  );
}

.input-form:focus + .focus-input-form::before {
  width: 100%;
}

.has-val.input-form + .focus-input-form::before {
  width: 100%;
}

.input-checkbox {
  display: none;
}

.label-checkbox {
  margin: 0;
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: var(--background-light);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox:checked + .label-checkbox::before {
  color: var(--primary-color);
}

.login-container-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.login-form-wrapper-form-btn {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  z-index: 1;
}

.login-form-bg-btn {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 300%;
  background: var(--primary-color);
  background: -webkit-linear-gradient(
    top,
    #352cab,
    #352cab,
    #352cab,
    #352cab
  );
  background: -o-linear-gradient(
    top,
    #352cab,
    #352cab,
    #352cab,
    #352cab
  );
  background: -moz-linear-gradient(
    top,
    #352cab,
    #352cab,
    #352cab,
    #352cab
  );
  background: linear-gradient(
    top,
    #352cab,
    #352cab,
    #352cab,
    #352cab
  );
  bottom: -100%;
  left: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 244px;
  height: 50px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-fff);
  line-height: 1.2;
}

.login-form-wrapper-form-btn:hover .login-form-bg-btn {
  bottom: 0;
}

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: var(--color-fff);
  border: 1px solid var(--error-color);
  border-radius: 2px;
  padding: 4px 30px 4px 10px;
  bottom: calc((100% - 25px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--error-color);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: var(--error-color);
  font-size: 18px;
  bottom: calc((100% - 25px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

.true-validate::after {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 22px;
  color: var(--success-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: calc((100% - 25px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 5px;
}

@media (max-width: 576px) {
  .login-form-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*  */
/* Overlay */

#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 100px;
  height: 100px;
  border: 5px solid var(--color-ccc);
  border-top-color: var(--color-333);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
