* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #243d53, #031728);
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.container {
  max-width: 400px;
  padding: 2rem;
  background-color: rgba(0,0,0,0.2);
  border-radius: 1rem;
  backdrop-filter: blur(5px);
}

.logo {
  width: 350px;
  height: auto;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.btn {
  background-color: #0b5887;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
}

.btn:hover {
  background-color: #3b6d8c;
  transform: scale(1.05);
}

footer {
  position: absolute;
  bottom: 1rem;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  width: 100%;
  padding-top: 50px;
}

