<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Animation styles */

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.login-card {
  animation: fadeIn 0.6s ease-out;
}

.login-header {
  animation: fadeIn 0.8s ease-out;
}

.login-form {
  animation: fadeIn 1s ease-out;
}

/* Spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner.active {
  display: block;
  animation: spin 0.8s linear infinite;
}

/* Form field focus animation */
.input-container input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.input-container input:focus {
  transform: translateY(-1px);
}

/* Button hover animation */
.login-button {
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.login-button:hover {
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.login-button:active {
  transform: scale(0.98);
  box-shadow: none;
}

/* Error shake animation */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-5px);
  }
  40%, 80% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 0.5s ease;
}

/* Success pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(52, 199, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
  }
}

.pulse {
  animation: pulse 1.5s infinite;
}

/* Form error highlight */
@keyframes errorHighlight {
  0%, 100% {
    border-color: var(--error);
  }
  50% {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.15);
  }
}

.error-highlight {
  animation: errorHighlight 1.5s ease;
  border-color: var(--error) !important;
}

/* Logo animation */
@keyframes logoEntrance {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.logo {
  animation: logoEntrance 0.8s ease-out;
}

/* Status message animation */
@keyframes slideInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.login-status.active {
  animation: slideInUp 0.3s ease-out forwards;
}

/* Checkbox animation */
@keyframes checkboxCheck {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.remember-me input[type="checkbox"]:checked::after {
  animation: checkboxCheck 0.2s ease-out forwards;
}</pre></body></html>