* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
body {
  background-color: rgba(179, 179, 179, 0.1);
}
h1 {
  font-size: 2.2em;
}
h2 {
  font-size: 1.8em;
}
.formulaire {
  width: 60%;
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
}
#logo {
  width: 350px;
  content: url("../images/logo_entreprise.png")
}
#version {
  margin: 5rem 0 0 2rem;
}
label {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
input {
  width: 100%;
  height: 2.8em;
  margin: 0 auto;
  border: solid 1px #e6a238;
  border-radius: 10px;
  transition: border;
  font-size: 1.2em;
  padding-left: 1rem;
}
input:hover {
  border: 1px #b9580c solid;
  transition: ease-in-out 0.2s;
}
input:focus {
  outline: 0px #b9580c solid;
  transition: ease-in-out 0.2s;
}
input::placeholder {
  font-style: italic;
}
select {
  height: 3.5rem;
  width: 90%;
  font-size: 1.2em;
  margin-top: 1rem;
  border-radius: 10px;
  border: solid 1px #e6a238;
  outline: none;
  padding-left: 1rem;
}
.button {
  width: 35em;
  margin: 3rem auto 0 auto;
  text-align: center;
}
button {
  width: 12em;
  padding: 1.3rem;
  background-color: #e6a238;
  text-align: center;
  color: black;
  font-size: 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color;
}
button:hover {
  background-color: #b9580c;
  color: white;
  transition: ease-in-out 0.2s;
}
.alerte {
  color: red;
  background-color: rgba(255, 79, 79, 0.1);
  font-size: 1.5em;
}
.ligne {
  display: flex;
}
.ligne_seule {
  margin-bottom: 1.1rem;
}
.left {
  text-align: left;
}
#cliquable {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color: white;
  background: #b9580c;
  align-items: center;
}
#pointage {
  background: #e6a238;
  color: black;
  width: 100%;
}
#no_pointage {
  padding: 0.5rem 0;
  background: #e6a238;
  color: black;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .formulaire {
    width: 50%;
  }
  #button {
    width: 25em;
  }
  button {
    width: 10em;
  }
}
@media screen and (max-width: 490px) {
  .formulaire {
    width: 90%;
  }
  #button {
    width: 15em;
  }
}

/*# sourceMappingURL=main.css.map */
