/* General body style */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f2f5;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Login form container */
.login-container {
  background: #ffffff;
  padding: 40px 30px; /* Adjusted padding for left/right */
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  width: 350px;
  box-sizing: border-box; /* Important for padding inside width */
  transition: transform 0.3s, box-shadow 0.3s;
}

.login-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Form heading */
.login-form h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 28px;
}

/* Labels */
.login-form label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 600;
}

/* Input fields */
.login-form input {
  width: 100%;
  padding: 12px 15px; /* Added horizontal padding */
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.login-form input:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 8px rgba(26, 115, 232, 0.3);
  outline: none;
}

/* Submit button */
.login-form button {
  width: 100%;
  padding: 14px;
  background-color: #1a73e8;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.login-form button:hover {
  background-color: #155bb5;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 400px) {
  .login-container {
    width: 90%;
    padding: 30px 20px;
  }
}
