:root {
  --first-color: hsl(232, 54%, 43%);
  --text-color: hsl(232, 8%, 35%);
  --white-color: hsl(232, 100%, 99%);
  --body-color: hsl(232, 45%, 90%);
  --container-color: hsl(232, 54%, 11%);
  --container-input: #;
}

* {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

.input {
  width: 100%;
  position: relative;
  background-color: var(--white-color) !important;
  padding: 0.8rem 1.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  column-gap: 1rem; /*2.1875rem;*/
  border: 1px solid var(--container-color);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input::focus {
  opacity: 1;
}

.input__lock,
.input__username,
.input__icon {
  font-size: 1.25rem;
  z-index: 1;
}

.input__lock,
.input__username,
.input__password {
  color: var(--container-color) !important;
}

.input__icon {
  position: absolute;
  right: 1.3rem;
  color: var(--container-color) !important;
  cursor: pointer;
}

.input__password {
  background: transparent !important;
  border: none;
  outline: none;
  font-size: 0.875rem;
  width: 100%;
  max-width: 13.5rem;
  z-index: 1;
}

.input__user {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-size: 0.875rem !important;
  z-index: 1;
  width: 100%;
}

.input__password::placeholder {
  color: var(--container-color) !important;
}

.input__overlay {
  width: 2rem;
  height: 2rem;
  background-color: var(--body-color) !important;
  position: absolute;
  right: 0.9rem;
  border-radius: 50%;
  z-index: 0;
  transition: 0.4s ease-in-out;
}

.overlay-content {
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  right: 0;
}

.overlay-content ~ .input__lock {
  color: var(--container-color) !important;
}

.overlay-content ~ .input__password,
.overlay-content ~ .input__password::placeholder {
  color: var(--container-color) !important;
}

.brand {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  margin: auto 20px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 5%);
  position: relative;
  z-index: 1;
}

.brand img {
  width: 100%;
}

.login-wrapper {
  width: 100%;
  max-width: 400px;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  margin: 0px 0px;
}

.card-body {
  padding: 1.25rem;
}

.btn-dcp {
  color: #fff;
  background-color: var(--container-color) !important;
  border-color: var(--container-color) !important;
}

.btn-dcp:hover {
  color: #fff;
}

.btn-block {
  padding: 12px 10px;
}

.btn-outline-dcp {
  background-color: #130c42;
  border-color: #130c42;
}

.btn-outline-dcp:hover {
  color: #fff;
  background-color: #01e843;
  border-color: #01e843;
}

@media screen and (max-width: 425px) {
  .login-wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .input__password {
    width: 8.125rem;
  }
}

.msg-hidden {
  display: none !important;
}

.msg-show {
  display: block !important;
}

.focus-input-outline {
  border: 1px solid #198754 !important;
  border-radius: 0.25rem;
}

.container-fluid {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

#divLoading {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
}
#divLoading img {
  width: 100px;
  height: 100px;
}
