/* login file css */

body.login-body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ffc1cc, #ffe6f2);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.5);
  text-align: center;
  width: 320px;
  animation: fadeIn 1s ease;
}

.login-butterfly {
  width: 100px;
  margin-bottom: 15px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ffc1cc;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
}

.login-form input:focus {
  border-color: #ff85a2;
  box-shadow: 0 0 10px rgba(255, 133, 162, 0.4);
}

.login-form button {
  width: 100%;
  padding: 12px;
  background: #ff85a2;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.login-form button:hover {
  background: #ff5e89;
}

.error-message {
  color: red;
  font-size: 0.9em;
  margin-top: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
