body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-box {
  background: white;
  padding: 40px 50px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  width: 360px;
  text-align: center;
}

.login-box h1 {
  margin-bottom: 25px;
  color: #1abc9c;
  font-size: 32px;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

.login-box button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #1abc9c;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.login-box button:hover {
  background: #11967c;
}

.error-msg {
  color: #e74c3c;
  margin-top: 10px;
  font-size: 15px;
  display: none;
}

.forgot-password {
  margin-top: 15px;
}

.forgot-password a {
  text-decoration: none;
  color: #1abc9c;
  font-size: 14px;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.success-msg {
  background: #1abc9c;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
}

/* small tick icon (optional) */
.success-msg::before {
  content: "✔";
  margin-right: 8px;
  font-size: 16px;
}

/* fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

