* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f2f5;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  background-color: #f0f2f5;
  max-width: 500px;
  padding: 20px;
}

.login-form {
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.login-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.login-form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s ease;
}

.login-form input:focus {
  border-color: #2575fc;
  outline: none;
}

.login-form button {
  width: 100%;
  padding: 12px;
  background-color: green;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background-color: darkgreen;
  cursor: pointer;
}

.google-btn {
  background: #fff;
  color: #757575;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.google-btn:hover {
  background: #f5f5f5;
  text-decoration: none;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #666;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.divider::before {
  margin-right: 10px;
}

.divider::after {
  margin-left: 10px;
}

/* Disable the browser's default password visibility toggle (eye icon) */
input[type="password"]::-webkit-reveal,
input[type="password"]::-ms-reveal {
  display: none !important;
}

/* For Firefox (if applicable) - ensures no custom appearance */
input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Optional: Adjust padding to remove any extra space left by the hidden icon */
input[type="password"] {
  padding-right: 15px; /* Fine-tune as needed; matches your existing input padding */
}
