@import "../font/stylesheet.css";

body {
  font-family: 'Roboto';
  margin: 0 auto;
  padding: 0 auto;
  overflow-x: hidden;
}

* {
  margin: 0 auto;
  padding: 0 auto;
}

/* autofill css */
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill,
input:-moz-autofill,
input:-internal-autofill-selected {
  box-shadow: 0 0 0 1000px #242424 inset !important;
  color: #fff !important;
  background-color: #242424 !important;
  -webkit-text-fill-color: #fff;
}

input:-internal-autofill-selected,
input:-internal-autofill-previewed {
  box-shadow: 0 0 0 1000px #242424 inset !important;
  color: #fff !important;
  background-color: #242424 !important;
  -webkit-text-fill-color: #fff;
}

/* header css */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.header {
  color: #fff;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.header-nav {
  background: #0000000f 0% 0% no-repeat padding-box;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  padding: 11px;
}

.blur-bg {
  background: #ffffff33 0% 0% no-repeat padding-box;
  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(1px);
}



.banner {
  padding: 7% 0%;
  min-height: 100vh;
  background: #0000008a;
}

/* loginform */
.login {
  background: #877c7759 0% 0% no-repeat padding-box;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px;
  max-width: 453px;
  min-width: 463px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px 0px 0px 50px;
}

.login::before {
  content: '';
  box-shadow: inset -1px 22px 21px -10px #ffffff1f;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -5;
  border-radius: 50px 0px 0px 50px;
}

.form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: #FFFFFF;
  outline: 0;
  box-shadow: unset;
  font-size: 20px;
  font-weight: 500;
}



.submit {
  background: transparent linear-gradient(108deg, #21A1D8 0%, #16958D 100%) 0% 0% no-repeat padding-box;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
}

.submit:hover {
  background: transparent;
  border: 1px solid transparent;
  border-image: linear-gradient(108deg, #21A1D8 0%, #16958D 100%);
  border-image-slice: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
}

::placeholder {
  color: #FFFFFF !important;
  font-size: 20px;
  font-weight: 500;
}

input.form-control {
  border: 1px solid #FFFFFF;
  background: transparent;
  margin: 11px 0px;
  border-radius: 0px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
}

.error {
  color: #ff8f8f;
}

.success {
  color: #FFFFFF;
}


/* header css end */


.login-input {
  position: relative;
}

.login-input input {
  padding-right: 41px;
}

span.icon-input {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}


@media (max-width: 879px) {
  .login {
    background: #877c7759 0% 0% no-repeat padding-box;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    max-width: 350px;
    min-width: 350px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
  }

  .login::before {
    content: '';
    box-shadow: inset -1px 22px 21px -10px #ffffff1f;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -5;
    border-radius: 10px;
  }

  .logo-right-sec {
    display: block;
  }
}

@media (max-width: 880px) {
  .details-sec {
    display: none;
  }

  .logo-right-sec {
    display: block;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-right-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-right: 0px;
  }

  .logo img {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {


  .banner {
    padding: 7% 0%;
    background: rgba(0, 0, 0, 0.6);
    /* semi-transparent overlay */
  }

  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }



  p.text-white.baner-text {
    text-align: left;
    color: #FFFFFF;
    font-size: 40px;
    width: 80%;
    font-weight: 500;
    line-height: 73px;
  }


}