html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9e0nNmjGX_LEeX_QWdFCB7PvGP1CUXdX3tg&s');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 380px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

img {
  height: 70px;
  margin-bottom: 20px;
}

h2 {
  color: #ff3f6c;
  font-weight: 600;
  margin: 5px 0;
}

p {
  color: #555;
  font-size: 14px;
  margin-bottom: 25px;
}

input[type="text"],
input[type="password"] {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

input:focus {
  border-color: #ff3f6c;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 63, 108, 0.3);
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin: 15px 0;
}

.options a {
  color: #ff3f6c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.options a:hover {
  color: #c83255;
}

#ee {
  font-size: 15px;
  font-weight: 600;
  border-radius: 25px;
  background-color: #ff3f6c;
  color: white;
  padding: 12px 35px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

#ee:hover {
  background-color: #e6335f;
  transform: scale(1.03);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
