/* css/login.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #d7145a, #fbb03b);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: #fff;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 380px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.login-box h2 {
  margin-bottom: 30px;
  color: #d7145a;
  font-size: 28px;
  font-weight: bold;
}

.login-box input {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.login-box input:focus {
  border-color: #d7145a;
  box-shadow: 0 0 5px rgba(215, 20, 90, 0.3);
}

.login-box button {
  width: 100%;
  padding: 14px;
  background-color: #d7145a;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-box button:hover {
  background-color: #bf0d4a;
}

.error-msg {
  color: red;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
