@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

.login_body {
  display: flex;
  flex-direction: column; /* Change to column layout */
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 0 10px;
}

.login_topbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.login_footer {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.login_wrapper {
  width: 400px;
  height: 400px; /* Fixed height for the card */
  perspective: 1000px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.login_wrapper .card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d; /* Enable 3D space */
}

.login_wrapper .front {
  position: absolute;
  width: 100%;
  height: auto;
  backface-visibility: hidden; /* Hide the back when facing away */
  border-radius: 8px;
  padding: 30px;
  /* text-align: center; */
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: #00000047;
}





.login_body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/background/loginbg3.jpg"), #000;
  background-position: center;
  background-size: cover;
}


.login_wrapper .front {
  display: flex;
  flex-direction: column;
}
.login_topbar h2 
{
  color: #dddddd;
}
.login_topbar span 
{
  color: #ff0000;
}
.login_wrapper h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.login_wrapper .input-field {
  position: relative;
  border-bottom: 2px solid #ccc;
  margin: 10px 0;
}

.login_wrapper .input-field label {
  /* position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%); */
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  transition: 0.15s ease;
  margin-bottom:5px;
}

.login_wrapper .input-field input {
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
  margin-top:5px;
}

.login_wrapper .input-field input:focus~label,
.login_wrapper.input-field input:valid~label {
  font-size: 0.8rem;
  top: 10px;
  transform: translateY(-120%);
}

.login_wrapper .forget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 35px 0;
  color: #fff;
}

#remember {
  accent-color: #fff;
}

.login_wrapper .forget label {
  display: flex;
  align-items: center;
}

.login_wrapper .forget label p {
  margin-left: 8px;
}

.login_wrapper a {
  color: #efefef;
  text-decoration: none;
}

.login_wrapper a:hover {
  text-decoration: underline;
}

.login_wrapper button {
  background: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.login_wrapper button:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.login_wrapper .register {
  text-align: center;
  margin-top: 30px;
  color: #fff;
}

/*registration */
.signupSection {
  /* background: url(../img/background/Cars-Wallpaper..jpg); */
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: auto;
  text-align: center;
  display: flex;
  color: white;
  box-shadow: 3px 10px 20px 5px rgba(0, 0, 0, .5);
}
.info {
  width: 45%;
  background: rgba(20, 20, 20, .8);
  padding: 30px 0;
  border-right: 5px solid rgba(30, 30, 30, .8);
}
.info h2 {
  padding-top: 30px;
  font-weight: 300;
}
.info p {
  font-size: 18px;
}
.info .icon {
  font-size: 8em;
  padding: 20px 0;
  color: rgba(10, 180, 180, 1);
}
.signupForm {
  width: 100%;
  padding: 30px 20px;
  background: rgba(20, 40, 40, .8);
  transition: 0.2s;
}
.signupForm h2 {
  font-weight: 300;
}
.name-fields {
  display: flex;
  justify-content: space-between;
}
.inputFields {
  margin: 15px 0;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  border: 1px solid rgba(10, 180, 180, 1);
  border-top: none;
  border-left: none;
  border-right: none;
  background: rgba(20, 20, 20, .2);
  color: white;
  outline: none;
}
.noBullet {
  list-style-type: none;
  padding: 0;
}
#join-btn {
  border: 1px solid rgba(10, 180, 180, 1);
  background: rgba(20, 20, 20, .6);
  font-size: 18px;
  color: white;
  margin-top: 20px;
  padding: 10px 50px;
  cursor: pointer;
  transition: 0.4s;
}
#join-btn:hover {
  background: rgba(20, 20, 20, .8);
  padding: 10px 80px;
}
.whatsapp_update 
{
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.back_to_login 
{
  margin-top: 10px;
}