* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
}

body {
  min-height: 100vh;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.google-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px auto;
  display: block;
}

h1 {
  font-size: 26px;
  font-weight: 500;
  color: #b01414;
  margin-bottom: 16px;
  line-height: 1.3;
  text-align: center;
}

p { 
  font-size: 15px;
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 12px;
}

.btn-continuar {
  display: flex; 
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  background-color: #1a73e8;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: 100px;
  margin-top: 12px;
  transition: background-color 0.2s ease;
}

.btn-continuar:hover {
  background-color: #1557b0;
}

.footer-note {
  margin-top: 24px;
  font-size: 12px;
  color: #9aa0a6;
  text-align: center;
}