* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9f9f9;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}


.container {
  background: linear-gradient(135deg, #0096D6, #33b7f2);
  color: #fff;
  text-align: center;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 150, 214, 0.25);
  max-width: 480px;
  width: 90%;
  animation: fadeIn 1s ease;
  backdrop-filter: blur(10px);
}

.logo {
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  width: 120px;
  height: auto;
  display: block;
}

h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 25px;
  line-height: 1.5;
}

.progress-bar {
  position: relative;
  height: 6px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
}

.progress-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: #ffffff;
  animation: loadProgress 3s ease-in-out infinite alternate;
}

@keyframes loadProgress {
  0% { width: 40%; }
  100% { width: 90%; }
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

input[type="email"] {
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 65%;
  font-size: 0.95rem;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  background: #fff;
  color: #0096D6;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.4);
}

.footer {
  font-size: 0.85rem;
  opacity: 0.85;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .container {
    padding: 40px 25px;
  }
  h1 { font-size: 1.6rem; }
  input[type="email"] { width: 60%; }
}


#formMessage {
  margin-top: 10px;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.hidden {
  display: none;
}
