* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #89f7fe, #66a6ff);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: white;
  width: 60%;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  background-color: #f5f5f5;
  border-radius: 12px 0 0 12px;
  width: 60%;
}

.login-image .logo-wata {
  width: 100%;
}

.login-image .logo-wata .logo {
  width: 120px;
}

.login-image .bus {
  width: 100%;
}

.login-image .bus-image {
  width: 100%;
  height: 60vh;
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}

.login-image .bus-image:hover {
  transform: scale(1.05) rotate(1deg);
}

.login-quote {
  border-radius: 20px;
  background-color: rgba(102, 222, 218, 0.9);
  width: 55%;
  text-align: center;
  margin-top: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  font-family: "Segoe UI", sans-serif;
  line-height: 1.4;
  padding-right: 60px;
}

#title-wt-1,
#title-wt-2 {
  font-size: 20px;
  font-style: italic;
  color: #333;
  display: block;
  line-height: 1.6;
}

#title-wt-1 {
  text-align: center;
  font-weight: 700;
}

#title-wt-2 {
  text-align: right;
  font-weight: 700;
}

.login-form {
  flex: 1;
  padding: 60px 40px;
  margin: auto;
}

.login-form h2 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border: none;
  background: #eee;
  border-radius: 30px;
  font-size: 16px;
}

.login-button {
  width: 100%;
  padding: 14px;
  background-color: #4caf50;
  color: white;
  border: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
}

.login-button:hover {
  background-color: #45a049;
}

.login-button label:hover {
  font-weight: 700;
}

.create-account {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

.create-account small {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    height: 60vh;
    width: 70vw;
  }

  .login-image {
    display: none;
  }

  .login-container {
    width: 90vw;
  }

  .login-form {
    margin: 0px;
  }
}

/* ✅ Tablet (768px đến 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .login-container {
    flex-direction: column;
    height: 60vh;
    width: 70vw;
    /* hoặc 50vw như bạn muốn */
  }

  .login-image {
    display: none;
  }

  .login-form {
    padding: 20px;
    margin: 0;
  }
}
