body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}

.header {
  text-align: center;
  margin-top: 20px;
}

.logo {
  width: 150px;
}

.security-box {
  background: white;
  max-width: 450px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.security-box h2 {
  color: #0066cc;
  margin-top: 0;
}

.security-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.text-message h3 {
  margin-top: 20px;
  color: #333;
  font-size: 16px;
}

.note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.buttons {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.continue {
  background: #0066cc;
  color: #fff;
}

.continue:hover {
  background: #004c99;
}

.cancel {
  background: #333;
  color: #fff;
}

.cancel:hover {
  background: #000;
}