/*
 * Feral Fiction Pro v7
 * Feral (De)Composition Engine v22.0
 * Copyright (c) 2024-2026 Postmodern Media LLC. All rights reserved.
 * This software is proprietary and confidential.
 *
 * SPDX-FileCopyrightText: © 2024-2026 Postmodern Media LLC (author: Thomas Reale <tom@feralfiction.com>)
 * SPDX-License-Identifier: LicenseRef-Feral-Fiction-Pro-Commercial-EULA
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(to bottom right, #026873, #3fb9b2);
  font-family: 'Georgia', 'Times New Roman', serif;
}

#lf-logo-image {
  width: 90px;
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
}


#login-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  margin: 4vh auto;
  padding: 60px 20px 30px 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  text-align: center;

  /* New luxury fade-in */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease-out forwards;
}

#login-card input {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

input[type="text"],
input[type="password"] {
  width: 85%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 18px;
  box-sizing: border-box;
  background-color: #fffaf2;
}

.btn {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  background: #e97540;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}

#message {
  margin-top: 10px;
  margin-bottom: 20px;
}

.message {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.message.error {
  background: #f8d7da;
  color: #842029;
}

.message.info {
  background: #d1ecf1;
  color: #0c5460;
}

.message.visible {
  opacity: 1;
}

.btn:hover {
  opacity: 0.9;
}

.links {
  margin-top: 15px;
  font-size: 0.9rem;
}

.links a {
  color: #4b220f;
  text-decoration: none;
  margin: 0 5px;
}

.links a:hover {
  text-decoration: underline;
}

/* Footer */
.ff-footer {
  padding: 16px 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}

.ff-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin: 0 4px;
}

.ff-footer a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.ff-footer-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 2px;
}

@media (max-width: 480px) {
  .ff-footer {
    padding: 12px 16px;
    font-size: 13px;
  }
  .ff-footer-sep {
    display: none;
  }
  .ff-footer a {
    display: inline-block;
    margin: 0 8px;
  }
}