*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.header-side-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px 0px 30px;
  height: 120px;
  background-color: #850000;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #010101;
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}

.header-side-bar h1 {
  color: white;
  font-size: 38px;
}

.header-top-bar {
  display: flex;
  height: 120px;
  background-color: #850000;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  /* border-bottom: 2px solid #010101; */
}

.text-header-top-bar {
  color: white;
  margin-left: -10px;
}

.vertical-line {
  border-left: 1px solid white;
  opacity: 0.8;
  height: 80px;
  margin: 20px 20px;
}

.text-header-top-bar h2 {
  font-size: 44px;
  margin-top: 20px;
  line-height: 30px;
  font-weight: bold;
}

.text-header-top-bar p {
  font-size: 24px;
  line-height: 5px;
}
/* nav section end */

/* login section start */

.loginbox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
}

form {
  width: 400px;
  height: 450px;
  box-sizing: border-box;
  border-radius: 5mm;
  padding: 40px 30px;
  backdrop-filter: blur(5px) saturate(160%);
  -webkit-backdrop-filter: blur(5px) saturate(160%);
  background: #850000; 
  border: 1px solid #630000;
  position: relative;
}

.title {
  width: 100%;
  font-size: 30px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
  color: white;
}

.inputs {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.inputf {
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  margin: 15px 0;
  position: relative;
}

.input {
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  border: none;
  border-bottom: 0.55mm solid rgb(255, 255, 255);
  background: none;
  padding: 0 15px;
  font-size: 15px;
  color: white;
  outline: none;
}

.input::placeholder {
  color: rgb(241, 232, 232);
}

.label {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  z-index: -1;
  transition: 0.25s ease-out;
}

.input:focus + .label {
  top: -20px;
  opacity: 1;
  z-index: 1;
}

.input:focus::placeholder {
  opacity: 0;
}

.input:not(:placeholder-shown) + .label {
  top: -20px;
  opacity: 1;
  z-index: 1;
}

.icon {
  color: white;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 18px;
}

.btnlogin {
  width: 100%;
  height: 40px;
  background: white;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6mm;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.btnlogin span {
  color: rgb(40, 40, 40);
  font-size: 16px;
}

.text {
  width: 100%;
  font-size: 13px;
  text-align: center;
  color: rgb(240, 240, 240);
}

.text a {
  color: white;
  font-weight: 600;
}

.dots {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  margin: 1px;
  animation: load 0.5s ease-out infinite alternate var(--delay);
}

@keyframes load {
  0% {
    background: rgb(0, 0, 0);
  }
  50%,
  100% {
    background: rgba(0, 0, 0, 0.1);
  }
}

.btnlogin .dots {
  display: none;
}

.btnlogin span {
  display: block;
}

.btnlogin.active .dots {
  display: flex;
}

.btnlogin.active span {
  display: none;
}

.input.active {
  animation: shake 0.25s ease-in-out 3;
}

@keyframes shake {
  0% {
    margin-left: 0px;
  }
  25% {
    margin-left: 5px;
  }
  75% {
    margin-left: -5px;
  }
  100% {
    margin-left: 0px;
  }
}
.logocenter {
  position: absolute;
  top: calc(25% - 90px);
  left: calc(50% - 50px);
  margin-bottom: 20px;
}
/* login section end */

