@import url(https://fonts.googleapis.com/css?family=Dancing+Script:regular,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
  list-style-type: none;
  font-family: "Montserrat", cursive;
}

.roue {
    z-index: -5;
    position: absolute;
    left: 50px;
    top: 45px;
}

div.testBg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: url("img/back.jpeg") no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.couvertureBg {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  opacity: 0.18;
}
#inscription {
  background: rgb(182, 182, 182);
  background: linear-gradient(
    0deg,
    rgba(182, 182, 182, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 25px;
  width: 460px;
  height: 530px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.titre h1 {
  font-size: 27px;
}

.titre h3,
#submit {
  font-family: "Dancing Script", cursive;
  font-size: 22px;
}

#name,
#email {
  width: 70%;
  border-radius: 20px;
  padding: 10px;
  outline: none;
  border: none;
}

.conditions {
  display: flex;
  font-weight: bold;
  align-items: flex-start;
  justify-content: center;
}
.conditions label {
  font-size: 15px;
  margin-left: -18px;
  margin-top: 2px;
}
#radio {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  outline: none;
  cursor: pointer;
  margin-left: 27px;
  color: black;
}
#submitBtn {
  border-radius: 20px;
  padding: 10px 0;
  width: 98px;
  background-color: #C20E1A;
  color: white;
  font-size: 17px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  #inscription {
    width: 90%;
    height: 90%;
  }

    .titre h1 {
        font-size: 20px;
    }

    .titre h3,
    #submit {
        font-family: "Dancing Script", cursive;
        font-size: 15px;
    }

    #name,
    #email {
        width: 70%;
        border-radius: 20px;
        padding: 10px;
        outline: none;
        border: none;
    }

    #submit {
        border-radius: 20px;
        padding: 10px 0;
        width: 100px;
        background-color: #C20E1A;
        color: white;
        font-size: 25px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        margin-bottom: 15px;
        margin-top: 15px;
    }

}
    
