html {
  background-color: black;
  color: white;
  font-family: sans-serif;
  margin: 0;
}

body {
  width: 100%;
  margin: 0;
}

.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

a {
  color: white;
  text-decoration: none;
}

ul {
  padding: 0;
}

p {
  font-size: 18px;
}

li {
  list-style: none;
}

h2 {
  font-size: 22px;
}

.app .installationList ul {
  margin-bottom: 80px;
}

.app .installationList ul .client {
  font-size: 18px;
}

.app .installationList ul li {
  margin-top: 30px;
  font-size: 22px;
}

.app .installationList ul li {
  max-width: 300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.app .installationList ul li .btn, .singleInstallation .btn, form .btn {
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid black;
  display: inline-block;
  cursor: pointer;
}
.app .installationList ul li .btn:hover, .singleInstallation .btn:hover, form .btn:hover {
  background-color: black;
  color: white;
}

.app .installationList ul li .status {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  vertical-align: flex-end;
  background-color: rgb(218, 4, 4);
}
.app .installationList ul li .status.active {
  background-color: rgb(63, 194, 135);
}

.singleInstallation {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.singleInstallation .back {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.singleInstallation img {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
  transform: scaleX(-1);
}
.singleInstallation h2 {
  font-weight: 400;
  margin-bottom: 30px;
}
.singleInstallation p {
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 30px;
}
.singleInstallation p span {
  font-weight: 300;
  margin-left: 10px;
  color: rgb(218, 4, 4);
}
.singleInstallation p span.active {
  color: rgb(63, 194, 135);
}
.singleInstallation .btn {
  opacity: 0.25;
  background-color: rgb(204, 204, 204);
  pointer-events: none;
}
.singleInstallation .btn.active {
  background-color: white;
  pointer-events: initial;
  cursor: pointer;
  opacity: 1;
}
.singleInstallation .btn.active:hover {
  background-color: black;
  color: white;
}

header {
  padding: 25px 4rem;
  border-bottom: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
header h2 {
  font-weight: 400;
}
header span {
  font-weight: 300;
}
header .logout {
  padding: 10px;
  cursor: pointer;
}

.wrapper {
  background-color: white;
  color: black;
  padding: 3rem 4rem;
  box-sizing: border-box;
  height: 100%;
}

.wrapper a {
  color: black;
}

.topHeader {
  width: 100%;
}
.topHeader div {
  display: inline-block;
}

footer {
  padding: 4rem;
  border-top: 1px solid white;
  display: flex;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  display: inline-block;
  margin-right: 50px;
}
footer a {
  color: white;
}

.signup {
  max-width: 500px;
}

.signup .formWrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.signup .formWrapper input {
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid black;
  display: inline-block;
  margin-bottom: 20px;
  width: 400px;
  max-width: 100%;
  box-sizing: border-box;
}
.signup .formWrapper .btn {
  align-self: flex-start;
}
.signup .formWrapper p {
  margin-bottom: 50px;
}

.signup .formWrapper.hidden {
  display: none;
}

.signup .succes p {
  line-height: 1.8em;
}

.signup .success.hidden {
  display: none;
}

@media only screen and (max-width: 800px) {
  header {
    padding: 25px 2rem;
  }
  footer {
    padding: 3rem 2rem;
  }
  .wrapper {
    padding: 3rem 2rem;
  }
  .app .installationList ul li, h2 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  header span {
    display: none;
  }
  footer ul {
    display: flex;
    flex-direction: column;
  }
  footer ul li {
    display: block;
    margin-bottom: 20px;
  }
  footer ul li a {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */