body {
  margin: 0;
  padding: 0;

  background-size: cover;
  height: 200px;
  font-family: sans-serif;
}

.box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 600px;

  padding: 40px;
  background: linear-gradient(
    115deg,
    rgba(240, 116, 39, 0.52),
    rgba(29, 87, 112, 0.349),
    rgba(240, 116, 39, 0.5),
    rgba(29, 87, 112, 1)
  );
  box-sizing: border-box;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);

  border-radius: 20px;
}

.box .log {
  width: 120px;
  height: 60px;
}

.deco {
  position: absolute;
  width: 150px;
  right: 10px;
  top: 3px;
}

.box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
}
.box .inputBox {
  position: relative;
}
.box .inputBox input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid;
  outline: none;
  background: transparent;
}
.box .inputBox label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: 0.5s;
}
.inputBox .inp {
  background: transparent;
}
.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label {
  top: -22px;
  left: 0;
  color: coral;
  font-size: 12px;
}
.box input[type="Submit"] {
  border: none;
  outline: none;
  color: #fff;
  background: coral;
  padding: 10px 20px;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.box input:focus {
  outline: none;
  fill: none;
  background: none;
}

.pv {
  position: relative;
  color: #e9f3f3;
  width: 400px;
}
.pv1 {
  position: relative;
  color: #206bb2;
  width: 400px;
}
.pv a {
  text-decoration: none;
  color: coral;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.3rem;
}

.reset {
  text-decoration: none;
  position: absolute;
  top: 90%;
  left: 32%;
  font-weight: 700;
  text-align: center;
  color: coral;
}

.box_2 {
  position: relative;
  margin-left: 35%;
  margin-top: 250px;
  width: 600px;
  height: 350px;
  color: white;
  background: #0b0b0c;
  text-align: center;
  border-radius: 20px 20px;
}

.box_2 img {
  position: absolute;
  width: 250px;
  height: 120px;
  z-index: 1;
  transform: translate(-128px, 25px);
}

.div_box {
  position: relative;
  padding-top: 200px;
}

.div_box a {
  color: #20b2aa;
}

.div_box a:hover {
  color: coral;
}

.lbl_pwd {
  position: relative;
}

.icon_logo {
  top: 8px;
  position: absolute;
  width: 22px;
  height: 22px;
}

input[type="checkbox"]:before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url("/static/images/eye_unchecked.svg") no-repeat 2%;
}

input[type="checkbox"]:checked:before {
  background: url("/static/images/eye_checked.svg") no-repeat 2%;
}

input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
}

@media (max-width: 600px) {
  .box {
    width: 400px;
  }
  .pv {
    font-size: 0.8rem;
    width: 300px;
  }
  .reset {
    left: 25%;
  }
}

@media (max-width: 425px) {
  .table_cont {
    justify-content: center;
  }
  .box {
    width: 320px;
  }
  .pv {
    font-size: 0.8rem;
    width: 250px;
  }

  .deco {
    width: 50px;
  }
  .pv a {
    font-size: 0.8rem;
  }
  .pv1 {
    font-size: 0.8rem;
    width: 220px;
  }
  .box .log {
    position: absolute;
    top: 5px;
    left: 2px;
    width: 80px;
    height: 40px;
  }

  .lbl_pwd {
    font-size: 0.8rem;
  }

  #id_username {
    font-size: 0.8rem;
  }

  .reset {
    font-size: 0.8rem;
    left: 25%;
  }
}

@media (max-width: 320px) {
  .box {
    width: 300px;
  }
}

@media (max-width: 290px) {
  .box {
    width: 260px;
  }

  .pv {
    font-size: 0.8rem;
    width: 200px;
  }

  .box .log {
    width: 80px;
    height: 40px;
  }
}
