body {
  margin: 0;
  height: 100%;
}

.nav-container {
  margin: 0 1.5rem;
  font-size: 1.1rem;
  z-index: 2;
}

.nav-container .nav-icon {
  width: 1.2rem;
}

.nav-container .nav-linkk {
  color: white;
  margin-right: 2rem;
}

.nav-container .nav-linkk:hover {
  color: #bd004b;
  text-decoration: none;
}

.nav-container .activated {
  color: #bd004b !important;
  text-decoration: none;
  border-bottom: 3px solid #bd004b;
}

.nav-container .dropDown {
  color: white;
  font-size: 1.1rem;
}

.nav-container .dropdown-item:hover {
  background-color: #25425f4d;
}

.nav-container .button {
  background-color: #bd004b;
  color: #ffffff;
  border-radius: 0.3rem;
  width: 7rem;
  height: 2.5rem;
  border: none;
  font-size: 1.1rem;
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

.nav-container .button:hover {
  opacity: 0.5;
}

.nav-container .button:focus {
  outline: none;
}

.image {
  background-color: #17304a;
  background-image: url("../assets/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100px;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: -1;
}

.gradientBackground {
  position: absolute;
  top: 0;
  height: 100%;
  height: 100vh;
  z-index: -1;
  background-image: -webkit-linear-gradient(top, rgba(23, 48, 74, 0.7) 38%, #17304a 80%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gradientBackground .form {
  color: white;
  width: 30%;
  height: 60%;
  position: relative;
  background-color: rgba(32, 69, 97, 0.3);
  border-radius: 0.6rem;
}

.gradientBackground .form .cursorPointer {
  cursor: pointer;
}

.gradientBackground .form .showPassword {
  width: 100%;
  padding: 0 .7rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 4px;
}

.gradientBackground .form .showPassword .fa-eye,
.gradientBackground .form .showPassword .fa-eye-slash {
  font-size: 1.3rem;
  color: #bd004b;
}

.gradientBackground .form .btn {
  width: 90%;
  height: 100%;
  background-color: #bd004b;
  border: none;
  color: white;
  outline: none;
}

.gradientBackground .form .header {
  text-align: center;
  margin: 1.8rem;
  font-size: 1.7rem;
  letter-spacing: 0.84px;
}

.gradientBackground .form ::-webkit-input-placeholder {
  font-size: 12px;
  letter-spacing: 0.84px;
  color: #b8c3cb;
}

.gradientBackground .form :-ms-input-placeholder {
  font-size: 12px;
  letter-spacing: 0.84px;
  color: #b8c3cb;
}

.gradientBackground .form ::-ms-input-placeholder {
  font-size: 12px;
  letter-spacing: 0.84px;
  color: #b8c3cb;
}

.gradientBackground .form ::placeholder {
  font-size: 12px;
  letter-spacing: 0.84px;
  color: #b8c3cb;
}

.gradientBackground .form label {
  margin-left: 8%;
  line-height: 1.2;
}

.gradientBackground .form input[type="checkbox"] {
  display: none;
}

.gradientBackground .form label::before {
  content: "";
  background: url("../assets/check-mark.png");
  background-position: center;
  background-size: contain;
  background-repeat: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 5%;
  -webkit-transform: scale(0) rotateZ(180deg);
          transform: scale(0) rotateZ(180deg);
  -webkit-transition: all 0.4s cubic-bezier(0.054, 0.01, 0, 1.49);
  transition: all 0.4s cubic-bezier(0.054, 0.01, 0, 1.49);
}

.gradientBackground .form input[type="checkbox"]:checked + label::before {
  -webkit-transform: scale(1) rotateZ(0deg);
          transform: scale(1) rotateZ(0deg);
}

.gradientBackground .form label::after {
  content: "";
  border: solid 1px #b8c3cb;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  position: absolute;
  left: 5%;
}

.gradientBackground .form .forgetPassword {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.84px;
  color: #b8c3cb;
  text-align: center;
  cursor: pointer;
}

.gradientBackground .form .hoveNoAccount {
  font-size: 14px;
  margin: 0;
  font-size: 14px;
  line-height: 3.29;
  color: #b8c3cb;
  text-align: center;
}

.gradientBackground .form .signUp {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

.shape1 {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  pointer-events: none;
}

.shape2 {
  position: absolute;
  top: -137rem;
  width: 92%;
  pointer-events: none;
  left: 0;
}

@media (max-width: 1024px) {
  .gradientBackground .form .checkbox {
    margin-left: 23%;
  }
  .shape1,
  .shape2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .gradientBackground .form {
    width: 50%;
  }
}

@media (max-width: 426px) {
  .gradientBackground .form {
    width: 70%;
  }
}

@media (max-width: 320px) {
  .gradientBackground .form {
    width: 95%;
  }
}

.footer-copyright {
  background-color: #17304a;
  padding: 1rem 0;
  color: white;
  position: absolute;
  bottom: 0;
  width: 100vw;
  z-index: -1;
}
/*# sourceMappingURL=login.css.map */