body {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Login {
  width: 1022px;
  height: 526px;
  border-radius: 33px;
  background-image: url(../images/gradient_green_transparent_geometry_background_3d_rendering_3d_illustration.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 878px auto;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}
.img-log img {
  width: 420px;
  height: 387px;
}
.tab-container {
  width: 390px;
  height: 390px;
  display: flex;
  flex-direction: column;
}

.tabs {
  display: flex;
  align-items: center;
  width: 215px;
  height: 56px;
  border-radius: 38px;
  background-color: #d7f0e5;
}

.tab {
  font-weight: 700;
  font-size: 20px;
  padding: 15px;
  width: 117px;
  height: 56px;
  color: #313131;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 37px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab.active {
  background-color: #0d746f;
  color: #fff;
}

.form {
  display: none;
  padding: 20px;
}

.form.active {
  display: block;
}

.form label {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: #5c5c5c;
  margin-bottom: 10px;
}

.input-wrapper {
  position: relative;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"] {
  width: 100%;
  height: 58px;
  padding: 10px 40px 10px 40px;
  margin-bottom: 15px;
  border: 1px solid #dddddd;
  border-radius: 7px;
  background-color: #f4f4f4;
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  color: #8b8989;
  outline: none;
}

.input-wrapper svg {
  position: absolute;
  left: 10px;
  top: 40%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #a5a5a5;
}

.form .checkbox-group {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form .checkbox-group label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

.checkbox-group #remember {
  width: 21px;
  height: 21px;
  border: 1px solid #dddddd;
  display: inline;
}
.form button:disabled{
    background-color: #9ca3af !important; /* رنگ خاکستری برای حالت غیرفعال */
    cursor: not-allowed !important; /* تغییر نشانگر ماوس به "ممنوع" */
    opacity: 0.7 !important; /* کمی شفافیت برای نشان دادن غیرفعال بودن */
}
.form button {
  background-color: #0d746f;
  color: white;
  border: none;
  padding: 10px 15px;
  width: 100%;
  height: 58px;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 700;
  font-size: 22px;
}

@media (max-width: 1025px) {
  .Login {
    width: 85%;
  }
  .img-log img {
    width: 320px;
    height: 320px;
  }
  .tab-container {
    width: 40%;
  }
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="password"] {
    height: 50px;
  }
  .form button {
    height: 50px;
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .Login {
    width: 90%;
  }
  .img-log img {
    width: 260px;
    height: 260px;
  }
  .tab-container {
    width: 60%;
  }
}
@media (max-width:600px) {
  .Login {
    width: 90%;
    flex-direction: column-reverse;
    height: 629px;
    padding: 20px;
    gap: 5px;
  }
  .img-log img {
    width: 240px;
    height: 220px;
  }
  .tab-container {
    width: 100%;
  }
  .tabs{
    height: 48px;
  }
  .tab{
    height: 48px;
    font-size: 18px;
  }
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="password"]{
    margin-bottom: 10px;
    height: 43px;
    font-size: 16px;
  }
  .form button{
    height: 43px;
  }
}
