.loader {
  border: 3px solid;
  border-radius: 50%;
  border-top: 3px solid;
  width: 22px;
  height: 22px; /* Safari */
  animation: spin 2s linear infinite;
  display: inline-block;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
input:focus {
  outline: none !important;
  border: none !important;
}

input[type=text], input[type=password] {
  height: 2.5rem;
  text-align: left;
  transition: all 0.4s;
}

.labelUserName {
  left: 1.25rem;
  top: 5px;
}

.labelUserNameFocus {
  font-size: 14px !important;
  left: 8px !important;
  top: -12px !important;
  font-weight: bold !important;
}

.main {
  background-image: url("../img/background.jpg"), linear-gradient(135deg, rgb(0, 0, 0) 0%, rgba(252, 246, 163, 0.288) 50%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-position-x: 42%;
  background-position-y: 40%;
  background-blend-mode: multiply;
  scale: 1.05;
  transition: all 0.6s;
}

.bgBlur {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-mask: radial-gradient(black, black, transparent);
          mask: radial-gradient(black, black, transparent);
}

.borderFocusMode {
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
}
.borderFocusMode span {
  border: 2.1px solid white;
  height: 100%;
  position: absolute;
}
.borderFocusMode span:nth-child(1) {
  left: 0;
  width: 12px;
  border: none;
  border-top: 2.1px solid white;
}
.borderFocusMode span:nth-child(2) {
  border-radius: 0 3px 3px 0;
  right: 0;
  width: calc(100% - 89px);
  border-left: none;
}
.borderFocusMode span:nth-child(3) {
  border-radius: 0 3px 3px 3px;
  border-top: none;
  width: 100%;
  left: 0;
}

.borderComplete {
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px white solid;
  transition: all 0.4s;
  opacity: 0;
}

.toggleBorder {
  opacity: 1 !important;
  transition: all 0.4s;
}

.btnBox {
  margin-top: 1rem;
}
.btnBox button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 12px 0;
  padding: 8px 0;
  font-family: iranyekan;
  color: rgb(247, 247, 247);
  min-height: 2.5rem;
  position: relative;
}

.ShowElement {
  transition: opacity 0.4s;
  opacity: 1 !important;
  max-height: 60px !important;
}

.perfectCenter {
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
}/*# sourceMappingURL=login.css.map */