@charset "UTF-8";
/***************
** COULEURS
***************/
/***************
** GÉNÉRAL
***************/
html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100vh;
  height: 100%;
}

body {
  background-color: #bfd3f8;
}

h1 {
  font-size: 3rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.75rem;
  text-align: center;
}

h4 {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #111;
}

section {
  background-color: #555555;
  padding: 2em 1em;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
}
form input {
  border: none;
  background: none;
  font-size: 1.25rem;
  color: #111;
  background-color: #bbbbbb;
  padding: 0.5em;
  margin-bottom: 0.75rem;
}
form input[type=submit] {
  background-color: cornflowerblue;
  margin-top: 1.25rem;
  cursor: pointer;
}
form input[type=submit]:hover {
  background-color: #3676e8;
}
form input::-moz-placeholder {
  color: #555555;
}
form input::placeholder {
  color: #555555;
}
form label {
  color: #f8f8f8;
}
form label select {
  font-size: 1.5rem;
}

/***************
** MESSAGES SUCCÈS OU ERREURS
***************/
.msg {
  padding: 0.5em 1em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.msg .material-icons {
  margin-right: 0.5rem;
}
.msg.erreur {
  background-color: lightcoral;
  color: darkred;
}
.msg.succes {
  background-color: lightgreen;
  color: green;
}

/***************
** PAGE ACCUEIL
***************/
.accueil {
  height: 100%;
  min-height: 100%;
}
.accueil > div {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accueil > div .creer-compte {
  color: gold;
  transition: color 0.1s;
}
.accueil > div .creer-compte:hover {
  color: #ccac00;
}

/***************
** PAGE CRÉATION COMPTE
***************/
.compte {
  height: 100%;
  min-height: 100%;
}
.compte > div {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.compte > div .connexion {
  color: gold;
  transition: color 0.1s;
}
.compte > div .connexion:hover {
  color: #ccac00;
}

/***************
** PAGE ACTIVITÉS
***************/
.activites {
  height: 100%;
  min-height: 100%;
}
.activites .menu {
  display: flex;
  justify-content: space-around;
}
.activites .menu .btn-ajouter {
  background-color: cornflowerblue;
  padding: 0.5em;
}
.activites .menu .btn-ajouter:hover {
  background-color: #3676e8;
}
.activites .menu .btn-deconnexion {
  background-color: lightcoral;
  padding: 0.5em;
}
.activites .menu .btn-deconnexion:hover {
  background-color: darkred;
}
.activites .activite {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.activites .activite p {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.activites .activite .btn-supprimer {
  background-color: lightcoral;
  padding: 0.25em;
}
.activites .activite .btn-supprimer:hover {
  background-color: darkred;
}

/***************
** PAGE AJOUTER-ACTIVITÉ
***************/
.ajouter-activite {
  height: 100%;
  min-height: 100%;
}
.ajouter-activite > div {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ajouter-activite > div .btn-retour {
  background-color: lightcoral;
  padding: 0.25em;
}
.ajouter-activite > div .btn-retour:hover {
  background-color: darkred;
}/*# sourceMappingURL=style.css.map */