*{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

header{
  height: 100px;
  box-shadow: 0px 5px 5px rgb(0,0,0,0.2);
  margin-bottom: 50px
}

header img{
  height: 90%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.title{
  color: #E61472;
  text-align: center;
  margin-bottom: 50px;
}


.form-box{
  width: 35%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1200px){
  .form-box{
      width: 75%;
  }
}

@media screen and (max-width: 500px){
  .form-box{
      width: 80%;
  }
}

input[type='text'],input[type='email'],select,input[type='password']{
  border-radius: 5rem;
  width: 100%;
  padding-block: 10px;
  margin-block: 15px;
  border: none;
  box-shadow: 0px 5px 5px rgb(0,0,0,0.2);
  text-indent: 15px;
}

/* Styles spécifiques pour les appareils iOS */
@media only screen and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  input[type='text'],input[type='email'],input[type='password']{
      border: 1px solid rgb(0,0,0,0.3);
  }
}


input::placeholder, select{
  color: black;
}

#imagePreview{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: 200px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  margin-bottom: 20px;
}

#imagePreview img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#imageInput{
  display: none;
}

.btn{
  background: #E61472;
  border: none;
  /*padding: 10px 80px;*/
  padding: 10px 0px;
  font-size: 16px ;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
}

.btn:hover{
  cursor: pointer;
}

.btn-home{
  width: 25%
}

@media screen and (max-width: 750px){
  .btn-home{
      width: 50%;
  }
}

@media screen and (max-width: 600px){
  .btn{
      font-size: 12px;
  }
  .btn-responsive{
      font-size: 20px;
  }
}

.box{
  box-shadow: 0px 5px 25px rgb(0,0,0,0.2);
  height: 350px;
  width: 50%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media screen and (max-width: 1200px){
  .box{
      width: 95%;
  }
}

.box div{
  position: relative;
  height: 100%;
}

.box .title-box h1{
  color: #E61472;
  position: relative;
  top: 80%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: bold;
  font-size: 42px;
}

.lighTitle-box p{
  text-align: center;
  font-size: 22px;
}

@media screen and (max-width: 700px){
  .box .title-box h1{
      font-size: 32px;
  }

  .lighTitle-box p{
      font-size: 16px;
  }
}

@media screen and (max-width: 525px){
  .box .title-box h1{
      font-size: 24px;
  }

  .lighTitle-box p{
      font-size: 14px;
  }
}

.extension{
  font-size: 12px;
  text-align:center;
  margin-bottom: 50px;
}
