/*.login-modal {*/
/*  position: fixed;*/
/*  bottom: -100%;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 90vh;*/
/*  background: #fff;*/
/*  border-radius: 25px 25px 0 0;*/
/*  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);*/
/*  transition: bottom 0.5s ease;*/
/*  z-index: 9999;*/
/*  padding: 30px 20px;*/
/*  font-family: "Poppins", sans-serif;*/
/*  text-align: center;*/
  
   
/*}*/

/*.login-modal.active {*/
/*  bottom: 0;*/
/*}*/


.login-modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 90vh;
  background: #fff;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
  transition: bottom 0.5s ease;
  z-index: 9999;
  padding: 30px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.login-modal.active {
  bottom: 0;
}


.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 26px;
  cursor: pointer;
  color: #666;
}

.login-title {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.tab {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  background: #f2f4f6;
  border-radius: 8px;
  overflow: hidden;
}

.tab button {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  color: #333;
}

.tab button.active {
  background: #007bff;
  color: #fff;
}

.input-group input {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.forgot {
  text-align: right;
  font-size: 13px;
  color: #007bff;
  margin-top: 5px;
  cursor: pointer;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #22c55e;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #16a34a;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.socials img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s;
}

.socials img:hover {
  transform: scale(1.1);
}

.register {
  margin-top: 20px;
  font-size: 14px;
}

.register a {
  color: #007bff;
  text-decoration: none;
}
