./* Main container */
.tml, .theme-my-login {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Labels */
.tml label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* Input fields */
.tml input[type="text"],
.tml input[type="password"],
.tml input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Submit button */
.tml input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.tml input[type="submit"]:hover {
  background-color: #45a049;
}
