﻿body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f7fb;
  padding-top: 90px;
  padding-bottom: 60px;
}

/* CONTAINER */
.container {
  max-width: 520px;
  margin: 30px auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* TITRE */
h2 {
  text-align: center;
  color: #183e8f;
}

/* INFO */
.info {
  background: #eef3ff;
  padding: 12px;
  border-left: 4px solid #183e8f;
  border-radius: 6px;
}

/* INPUT + BUTTON */
input,
button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
}

button {
  background: #b2090d;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #8f070a;
}

/* EVENT BUTTON */
.event-btn {
  display: inline-block;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: #b2090d;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}

/* FOOTER */
.footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #183e8f;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  z-index: 999;
}
