body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(135deg, #cc7979, #fd3232);
  color: #333;
  text-align: center;
}

.container {
  background: #fff;
  padding: 40px 60px;
  border-radius: 15px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 90%;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  max-width: 150px;
  height: auto;
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #f52a2a;
}

p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #f52a2a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

footer {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #777;
}