/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #004aad, #61a9f6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #e0f1fc;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
}

.logo img {
  width: 60px;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 1.5rem;
  color: #004aad;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.header p {
  font-size: 0.9rem;
  color: #333;
  margin-top: 5px;
}

.content {
  margin-top: 20px;
}

.button {
  background: linear-gradient(135deg, #004aad, #003277);
  border-radius: 25px;
  padding: 10px 15px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
}

.button:hover {
  transform: scale(1.05);
}

.button span {
  font-size: 0.9rem;
  font-weight: bold;
  flex: 1;
  text-align: left;
}

.button img {
  width: 20px;
  margin-left: 10px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .container {
    width: 100%;
    max-width: 350px;
    padding: 15px;
  }

  .header h1 {
    font-size: 1.2rem;
  }

  .header p {
    font-size: 0.8rem;
  }

  .button {
    padding: 8px 10px;
  }

  .button span {
    font-size: 0.8rem;
  }

  .button img {
    width: 18px;
  }
}
