body {
  margin: 0;
  height: 100vh;
  background: #fff0f6;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    animation: fadeIn 0.8s ease, slideIn 0.8s ease;
}

h2 {
    color: #ff1493; /* Heading in deep pink */
    margin-bottom: 20px;
}

.emoji {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #ff69b4; /* Focus border */
    box-shadow: 0 0 8px rgba(255,105,180,0.5); /* Glow */
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, #ff69b4, #ff1493); /* Pink button */
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

button:hover {
    opacity: 0.9;
}

a {
    color: #ff1493; /* Links deep pink */
    text-decoration: none;
}

.links {
    margin-top: 10px;
    font-size: 14px;
}

.switch-link {
  margin-top: 20px;
  font-size: 14px;
}

.switch-link a {
  color: #ff69b4; /* Hot pink link */
  text-decoration: none;
  font-weight: bold;
}

.switch-link a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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