@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500;9..40,700&display=swap");

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

body {
  background-color: #f4f5f7;
  color: #24292e;
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing {
  background-color: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 0.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 24rem;
  width: 100%;
}

.landing__titre {
  font-size: 1.25rem;
  font-weight: 700;
  color: #24292e;
}

.landing__sous-titre {
  font-size: 0.875rem;
  color: #6a737d;
  margin-top: -1rem;
}

.landing__boutons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.landing__btn {
  display: block;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 0.375rem;
  transition: opacity 0.15s ease;
  width: 100%;
  text-align: center;
}

.landing__btn--app {
  background-color: #24292e;
  color: #ffffff;
}

.landing__btn--admin {
  background-color: #ffffff;
  color: #24292e;
  border: 1px solid #e1e4e8;
}

.landing__btn:hover {
  opacity: 0.85;
}
