/* ----- Variables de base ----- */
:root {
  --primary-color: #2d55a6;
  --light-bg: #ffffff;
  --text-dark: #030303;
  --text-muted: #94a3b8;
  --font-main: "Lexend Deca", sans-serif;
}

/* ----- Reset de base ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: #f5f5f5;
  padding: 2rem;
  color: var(--text-dark);
}

/* ----- Card Générique ----- */
.card {
  background-color: var(--light-bg);
  border-radius: 16px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 1rem;
}

/* ----- Carte bleue spécifique (Calendrier) ----- */
.card-blue {
  background-color: var(--primary-color);
  color: white;
  border-radius: 34px;
}

/* ----- Titre ----- */
.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ----- Texte ----- */
.text {
  font-size: 16px;
  line-height: 1.5;
}

/* ----- Formulaire ----- */
.login-box {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 2px -2px 10px rgba(3, 3, 3, 0.1);
  max-width: 300px;
  margin: auto;
  text-align: center;
}

.input {
  width: 100%;
  height: 50px;
  margin-bottom: 1rem;
  padding: 0 12px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background-color: var(--light-bg);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 50px;
  outline: none;
}

.button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.button:hover {
  background-color: #1f3d7a;
}

/* ----- Layout responsive (optionnel) ----- */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.flex-col {
  flex: 1;
  min-width: 300px;
}
