body {
  margin: 0;
  position: relative;
  overflow: hidden;
}

li {
  list-style-type: none;
}

.sub-service {
  margin-top: 0.6vw;
  padding: 0 1vw;
  cursor: pointer;
}

.service-list {
  padding: 0;
}

input {
  font-family: Roboto, Arial;
}

.background1-image {
  z-index: -10;
  position: absolute;
  width: 100vw;
  height: 100vh;
  filter: brightness(60%);
  object-fit: cover;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  height: 100vh;
  width: 100vw;
}

.sub-container {
  height: 30vw;
  width: 50vw;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  background-color: white;
}

.whitespace {
  height: 25px;
}

.send-input {
  height: 4vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envoyer {
  font-size: 1.2vw;
  font-weight: 500;
  color: white;
  height: 70%;
  border-radius: 100px;
  border: none;
  background-color: rgb(79, 176, 255);
  box-shadow: 0px 0px 4px rgb(126, 126, 126);
  padding: 0 12px;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.envoyer:hover {
  background-color: white;
  color:rgb(79, 176, 255);
  box-shadow: 0px 0px 6px rgb(79, 176, 255);
}

.whitespace2 {
  height: 2vw;
}

.user-input {
  flex: 1;
  display: flex;
}

.user-input-1 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.societe {
  font-size: 1vw;
  margin: 1.5vw;
  margin-top: 35px;
  margin-bottom: 0;
  border: none;
  padding-bottom: 5px;
  border-bottom: 2px solid rgb(24, 112, 184);
}

.chiffre-nb {
  display: flex;
  justify-content: space-between;
  margin: 1.5vw;
  margin-top: 35px;
  margin-bottom: 0;
}

.chiffre-affaire,
.nb-employe {
  font-size: 1vw;
  width: 9vw;
  padding-bottom: 4px;
  border: none;
  border-bottom: 2px solid rgb(24, 112, 184);
}

.societe:focus,
.chiffre-affaire:focus,
.nb-employe:focus,
.services:active,
.comment:focus {
  outline: none;
}

.user-input-2 {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.comment:hover {
  box-shadow: 0px 0px 4px rgb(24, 112, 184);
}

.expanded-page {
  display: none;
  font-family: Roboto, Arial;
  position: absolute;
  font-size: 1vw;
  top: 5vw;
  left: -0.5vw;
  margin-left: 2vw;
  background-color: white;
  box-shadow: 0px 0px 4px rgb(24, 112, 184);
}

.comment {
  font-family: Roboto, Arial;
  margin: 1.5vw;
  font-size: 1.2vw;
  padding: 0.8vw;
  resize: none;
  height: 9.8vw;
  border: none;
  border-radius: 2px;
  box-shadow: 0px 0px 4px rgb(180, 180, 180);
  transition: box-shadow 0.2s;
}

#select-options {
  font-family: Roboto, Arial;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5vw;
  padding: 0.8vw;
  margin-bottom: 0;
  border: none;
  border-radius: 2px;
  box-shadow: 0px 0px 4px rgb(180, 180, 180);
  background-color: white;
  cursor: pointer;
}

#select-options:hover {
  box-shadow: 0px 0px 4px rgb(24, 112, 184);
}

#select-options:focus {
  outline: none;
}

#select-options {
  font-size: 1vw;
}

@media only screen and (max-width: 950px) {
  body {
    overflow-y: visible;
  }

  .user-input {
    flex-direction: column;
  }

  .sub-container {
    height: 400px;
    width: 240px;
  }

  .societe {
    margin-top: 7px;
    padding: 6px;
  }

  .societe,
  .chiffre-affaire,
  .nb-employe,
  .comment,
  .sub-service {
    font-size: 12px;
  }

  .send-input {
    height: 40px;
  }

  .envoyer {
    font-size: 14px;
  }

  .chiffre-nb {
    gap: 5%;
    margin-top: 7px;
  }

  .chiffre-affaire,
  .nb-employe {
    padding: 6px;
    flex: 1
  }

  .comment {
    height: 100px;
  }

  .expand {
    height: 15px;
  }

  .expanded-page {
    top: 38px;
  }

  #select-options {
    padding: 6px;
    font-size: 12px;
  }
}
