/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}

.logo{
  position: absolute;
  width: 19%;
  left: 0%;
  top: 0%;
}
.container{
  position: relative;
  max-width: 950px;
  width: 100%;
  padding: 40px 30px;
  perspective: 2700px;
}

#removeImageBtn{
  height: 20px;
  color: #ffffff;
  width: 20px;
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid red;
  background-color: red;
  font-size: 16px;
  padding: 0;
}
.container .cover{
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 50%;
  z-index: 98;
  transition: all 1s ease;
  transform-origin: left;
  transform-style: preserve-3d;
}
.container #flip:checked ~ .cover{
  transform: rotateY(-180deg);
}
 .container .cover .front,
 .container .cover .back{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cover .back{
  transform: rotateY(180deg);
}
.container .cover::before,
.container .cover::after{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  z-index: 12;
}
.container .cover::after{
  opacity: 0.3;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.container .cover img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 10;
}
.container .cover .text{
  position: absolute;
  z-index: 130;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cover .text .text-2{
  font-size: 15px;
  font-weight: 500;
}
.container .forms{
  height: 100%;
  width: 100%;
  background: rgb(39, 38, 38);
}
.container .form-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-content .login-form,
.form-content .signup-form{
  width: calc(100% / 2 - 25px);
}
.forms .form-content .title{
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: rgb(235, 232, 229);
}
.forms .form-content .title:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 25px;
  background: #ff7300;
}
.forms .signup-form  .title:before{
  width: 20px;
}
.forms .form-content .input-boxes{
  margin-top: 30px;
}
.forms .form-content .input-box{
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  margin: 20px 0;
  position: relative;
  background-color: #333;
}
.form-content .input-box input{
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 20px 30px;
  font-size: 16px;
  background-color: rgba(126, 126, 126, 0.459);
  font-weight: 500;
  border-bottom: 2px solid rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#image{
  background-color: rgba(126, 126, 126, 0.459);
  margin: 12px 0px;
}
.forgot-link{
  color:  #ff7300;
}
.container ::placeholder{
  color: rgb(220, 230, 230);
}
.form-content .input-box input:focus,
.form-content .input-box input:valid{
  border-color: #ccc3c3;
}
.form-content .input-box i{
  position: absolute;
  color:  #ff730080;
  padding: 0px 9px;
  font-size: 17px;
}
.forms .form-content .text{
  font-size: 14px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}
.forms .form-content .text a{
  text-decoration: underline;
}
.forms .form-content .text a:hover{
  text-decoration: underline;
}
.forms .form-content .button{
  color: rgb(240, 240, 240);
  margin-top: 40px;
}
.forms .form-content .button input{
  color: rgb(255, 255, 255);
  background: #333233;
  border-color: transparent;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  transition: all 2s ease;
}

.forms .form-content .button input:hover{
  background: #39383a;
  border-color:  #ff7300;
}
.forms .form-content label{
  color: #ffffff;
  cursor: pointer;
  text-decoration: underline;

}
.forms .form-content label:hover{
  text-decoration: underline;
}
.forms .form-content .login-text,
.forms .form-content .sign-up-text{
  text-align: center;
  margin-top: 25px;
}
.container #flip{
  display: none;
}
.container input{
  color: rgb(255, 255, 255);
}

.dark .head h3{
    color: white;
}

.input{
	display: flex;
  color: rgb(255, 255, 255);
}
.term{
	color: azure;
	padding: 0px 5px;
}

.termlink{
		color: azure;
    text-decoration: underline;
}
.password-hint, .image-hint{
		color: azure;
}
.img{
  text-decoration: none;
  color: white;
  padding: 12px 0px;
  position: relative;
}
.toggle-password {
    position: absolute;
    right: 35px;
    top: 37%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 2;
}
.input-box {
    position: relative;
}

.help{
  position: relative;
  left: 50%;
  top: 20rem;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  background-color: transparent;
  border: 1px solid #000000;
  max-width: 950px;
  width: calc(100% - 60px);
  padding: 40px 30px;
  box-sizing: border-box;
  text-align: center;
}

.whtasapphelp{
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: 140px;
  margin: 20px auto 0;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (max-width: 480px){
  .whtasapphelp{ width: 80%; min-width: 0; }
}

@media screen and (max-width: 960px) {
.bottomfooter {
    top: 12rem;
    position: relative;
}
}
@media (max-width: 865px) {
  .container .cover{
    display: none;
  }
  .form-content .login-form,
  .form-content .signup-form{
    width: 100%;
  }
  .form-content .signup-form{
    display: none;
  }
  .container #flip:checked ~ .forms .signup-form{
    display: block;
  }
  .container #flip:checked ~ .forms .login-form{
    display: none;
  }
.logo{
  width: 13%;
}
  
}
@media (min-width: 2200px) {
  .container{
  top: 12rem;
}
  
}
@media (max-width: 480px){
  .logo{
    width: 19%;
  }
}