html, body {
  height: 100%;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #424242;
  background-color: #ededed;
}

body {
  display: flex;
  justify-content: flex-end; /* aligne à droite */
  align-items: center;        /* centre verticalement */
  padding: 0 var(--form-horizontal-gap);
  min-height: 100vh;
  box-sizing: border-box;
}

.row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: flex-end;
  padding: 0 2rem;
  box-sizing: border-box;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 50%;
}

.text-center {
  text-align: center;
}

.top-bar {
  height: 20px;
  background: linear-gradient(to bottom, #71a100 0%, #6fa100 100%);
}

.footer {
  position: relative;
  margin-top: -60px;
  height: 60px;
  clear: both;
  text-align: center;
  font-size: 14px;
}
