* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: url("assets/login-background-extended.jpg") no-repeat center center/cover;
  color: #333;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  max-width: 200px;
  margin: 0 auto 30px;
  display: block;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 30px;
  font-size: 16px;
}

.card {
  background-color: rgba(255, 213, 0, 0.9);
  max-width: 600px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.option {
  background-color: white;
  border: none;
  border-radius: 6px;
  padding: 12px;
  flex: 0 0 48%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.option:hover {
  transform: translateY(-2px);
}

.option img {
  width: 24px;
  margin-right: 10px;
}

.option span {
  font-size: 20px;
  color: #f0a500;
  margin-left: 10px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: #333;
}
