* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  align-items: center;
  background: linear-gradient(135deg, #f2f2f2 0%, #d9e2ec 100%);
  color: #333;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center; }

.container {
  animation: fadeIn 0.8s ease;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  padding: 40px 30px;
  width: 100%; }

.container img {
  height: auto;
  margin-bottom: 20px;
  width: 120px; }

h1 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 10px; }

p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px; }

.loader {
  animation: spin 1s linear infinite;
  border: 6px solid #ccc;
  border-radius: 50%;
  border-top-color: #0066cc;
  height: 60px;
  margin: 20px auto;
  width: 60px; }

.footer {
  color: #777;
  font-size: 0.85rem;
  margin-top: 10px; }

@keyframes spin {
  to {
    transform: rotate(360deg); } }
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem; }

  p {
    font-size: 0.95rem; } }

/*# sourceMappingURL=maintenance.css.map */
