@font-face {
font-family: 'Poppins';
src: url('../fonts/Poppins-Regular.ttf') format('ttf'),
url('../fonts/Poppins-Regular.ttf') format('svg#Poppins'),
url('../fonts/Poppins-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'vonique';
src: url('../fonts/Vonique 64.ttf') format('ttf'),
url('../fonts/Vonique 64.ttf') format('svg#vonique'),
url('../fonts/Vonique 64.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
*{
  padding:0;
  margin:0;
}
.insam-container{
  max-width: 1920px;
  margin:0;
  padding: 0;
  height: 100vh;
  background-image: url(Fond.png);
  background-size: cover;
  background-position-y: -80px;
  background-repeat: no-repeat;
}

@media (min-height:768px) {
  .insam-container{
    height: 110vh;
  }
}

.insam-container .insam-row{
  max-width: 1200px;
  margin:0 auto;
}
.insam-row .head{
    height: 60px;
    padding-top: 43px;
    position: relative;
}
.head .insam-logo{
  width: 140px;
  position: absolute;
  left: 0;
}
.head .insam-logo img{
  width: 100%;
}
.head .insam-menu{
  position: absolute;
  right: 0;
  line-height: 46px;
  }
  .head .insam-menu a{
      color: white;
      text-decoration: none;
      cursor: pointer;
      font-size: 16px;
      text-transform: uppercase;
      font-family: 'Poppins';
      margin:0 15px;
      font-weight: 400;
    }
    .insam-login{
      border-radius: 50px;
      border: 2px solid white;
      padding: 6px 20px;
    }
    .padding{
      padding: 0 170px
    }
    .insam-col-50{
      width: 50%;
      float: left;
      margin-top: 110px;
    }
    .insam-col-50 h1{
        font-family: 'vonique';
        font-size: 60px;
        font-weight: bold;
        max-width: 583px ;
        color: white;
        text-transform: capitalize;
    }
    .insam-col-50 p{
        font-family: 'Poppins';
        font-size: 19px;
        max-width: 353px;
        color: white;
    }
    #start{
      margin-top: 30px;
    }
    .insam-col-50  a{
        text-decoration: none;
    }
  .start{
      background: white;
      color:#484ee5;
      font-family: 'Poppins';
      font-size: 16px;
      text-transform: capitalize;
  }
  .start:hover{
      background: #484ee5;
      color:white;
      border: 2px solid white;
      transition: all 1.2s;
  }
.insam-col-50 figcaption img{
    width: 474px;
    position: relative;
    top:-60px;
}



/*****Form style ***/

.insam-col-100{
  max-width: 647px;
  margin: 0 auto;
  margin-top: 20px;
}
.insam-col-100 h2{
  text-align: center;
  color:white;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Poppins';
  text-transform: capitalize;
  margin-bottom: 20px;
    font-weight: bold;
}
.my-form{
  border-radius: 15px;
  background: rgba(255,255,255,0.5);
  padding: 50px;
}
.my-form .insam-form{
  margin: 30px 0;
}
.position{
  position: relative;
  top:-40px;
}
.my-form .insam-form .insam-control{
  width: 90%;
  height:40px;
  font-size: 15px;
  border:none;
  border-radius: 5px;
  padding: 0 20px;
}
.insam-form input::placeholder{
    font-family: 'Poppins';
    font-size: 15px;
}


.insam-control{
  outline: none;
}
.insam-control:focus{
  box-shadow: 10px 5px 5px #484de5be;
}
.insam-btn{
    color: white;
    background: #484ee5;
    font-family: 'Poppins';
    padding: 8px 21px;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    display: block;
    width: 135x;
    height: 45px;
    margin: 0 auto;
    position: relative;
    letter-spacing: 0.15em;
    top:30px;
}
.insam-btn:hover{
  cursor: pointer;
  transform: scale(1.06);
  transition: all 0.3s ease-out;
}
.inactif{
      color: #a2a2a2;
      border-color: #a2a2a2;
      cursor: not-allowed;
}

.swal2-title{
  color: #444444;
  font-family:Poppins;
  font-weight: 300;
}


.icon_mdp {
  color: #484ee5;
  margin-top: 10px;
  margin-left: -38px;
  cursor: pointer;
}


        /* Chargement  */
        

        .loader-bg {
          position: absolute;
          z-index: 1000;
          width: 100%;
          height: 100%;
          background: #e5e5e9;
          width: 100%;
          height: 100%;
      }
      
      .loader {
          position: absolute;
          top: 50%;
          left: 50%;
          width: 130px;
          height: 130px;
          border-top: 16px solid #484ee5;
          border-radius: 50%;
          box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.2);
          transform: translate(-50%, -50%) rotate(0deg);
          animation: loader 1s linear infinite;
      }
      
      @keyframes loader {
          100% {
              transform: translate(-50%, -50%) rotate(360deg);
          }
      }


      .fondu-out {
        opacity: 0;
        transition: opacity 1s ease-out, visibility 1s ease-in-out;
    }