body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

.card {
  width: 90%;
  max-width: 650px;
  background: white;
  padding: 50px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

#status {
  font-size: 22px;
  margin-bottom: 35px;
}

#status strong {
  color: #007bff;
}

.btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  margin: 18px 0;
  border: 0;
  border-radius: 8px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.google {
  background: #e94235;
}

.github {
  background: #333;
}

.logout {
  background: #e63946;
}

#avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 20px auto;
}

#user-name {
  font-size: 28px;
}

#user-email {
  font-size: 20px;
}
