*{
		margin: 0;
		padding: 0;
		}

body {
  margin: 0;
  padding: 0;
  background: url(../img/assets/auth-1.webp) no-repeat center center / cover;
  height: 100vh;
  width: 100vw;
	
}
.FormGap{
	padding-top:40px;
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 1269px) {
  #bg-video {
    display: none;
  }
  body {
    background: url(../img/assets/auth-1.webp) no-repeat center center / cover;
	   
  }
}
.userActionFrom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #FB9E3A;
  min-width: 365px;
}

@media (max-width: 768px) {
  .userActionFrom {
    padding: 15px;
	  margin-top: 15vh;
  }
}

@media (max-width: 480px) {
  .userActionFrom {
    padding: 10px;
  }
}
.userActionFrom .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
	margin: auto;
}

.userActionFrom .title {
  font-size: 28px;
  color: #FFAD84;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
}



.userActionFrom .message, .userActionFrom .signin {
  color: rgba(88, 87, 87, 0.822);
  font-size: 14px;
}

.userActionFrom .signin {
  text-align: center;
}

.userActionFrom .signin a {
  color: #FFAD84;
}

.userActionFrom .signin a:hover {
  text-decoration: underline #FFAD84;
}

.userActionFrom .flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.userActionFrom .form label {
  position: relative;
}

.userActionFrom .form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.userActionFrom .form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.userActionFrom .form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.userActionFrom .form label .input:focus + span, .userActionFrom .form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
}

.userActionFrom .form label .input:valid + span {
  color: green;
}

.userActionFrom .submit {
  border: none;
  outline: none;
  background-color: #FFE382;
  padding: 10px;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  transform: .3s ease;
}

.userActionFrom .submit:hover {
  background-color: #FFC47E;
}
label .fa-eye {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

label .input {
  padding-left: 40px;
}

label .fa-eye-slash {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
.back-to-home {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.back-to-home:hover {
  background-color: #f5f5f5;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.back-to-home i {
  font-size: 18px;
  color: #333;
}
