/* Fichier : assets/css/forms.css */
input, button, select {
  width:100%;
  padding:10px;
  margin-bottom:10px;
}
button {
  background:#111;
  color:#fff;
  border:none;
  cursor:pointer;
}
.login-page {
  display:flex;
  align-items:center;
  justify-content:center;
  height:100vh;
}
.login-box {
  background:#fff;
  padding:30px;
  width:300px;
  border-radius:10px;
}
.error { color:red; }
