@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat Regular 400.ttf') format('truetype');
	src: url('../fonts/Montserrat SemiBold 600.ttf') format('truetype');
	src: url('../fonts/Montserrat-Bold-700.ttf') format('truetype');
}
  
* {
    /* La largeur de tous les élémnets prend en compte les bordures et le padding. */
    box-sizing: border-box;
  }

  html {
      overflow: hidden;
  }
  
  body, html {
    position: relative;
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "LuckiestGuy", sans-serif;
  }

  body {
    background-color: #000000;
    background-image: url('../images/background_findReport.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    
  }
  #header{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 65px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
  }

  #headerImg {
    margin-left : 55px;
    margin-right: 10px;
  }

  #headerImg img {
    height: 45px;
  }

  #headerText{
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    font-weight: 500;
  }
  
  .return-button {
    display: block;
    font-family: "Open Sans", Sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    line-height: 1.2em;
    letter-spacing: 0px;
    color: #FFFFFF;
    background-color: #BC0A0A;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #BC0A0A;
    padding: 14px 30px 12px 30px;
    width: 40%;
    margin: 50px auto;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
  }

  a, a:hover, a:focus, a:active, a:visited {
    color: #FFFFFF !important;
  }

  .return-button:hover, .return-button:focus {
    background-color: #FFFFFF00;
    transform: translateY(-8px);
  }

  .containerText {
    position: relative;
    top: 150px;
    width: 23%;
    margin: 0 auto;
    text-align: center;
  }

  .background-overlay {
    background-color: #000000;
    opacity: 0.7;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  }
  .background-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
  }

  .heading-title {
    color: #ffffff;
    font-family: "Montserrat", Sans-serif;
    font-size: 45px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .heading-subtitle {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #containerSendCode {
      position: relative;
  }

  #containerSendCode input {
    position: relative;
    width: 80%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #BC0A0A;
    background-color: white;
    font-size: 20px;
    letter-spacing: 2px;
}

#containerSendCode input:focus {
    outline: none;
}

/*************************

    PARTIE RESPONSIVE

**************************/
@media only screen and (max-device-width: 1600px) {
    #headerImg {
        margin-left: 9px;
    }
    
    .containerText {
        width: 40%;
      }

    #containerSendCode input {
        letter-spacing: 3px;
    }
  }

@media only screen and (max-device-width: 1200px) {
.containerText {
    width: 60%;
    }
}

@media only screen and (max-device-width: 800px) {
    .containerText {
        width: 80%;
    }
}


  @media only screen and (max-device-width: 500px) {

      .containerText {
          width: 100%;
        }
        
        .containerText h1 {
            font-size : 14px;
        }
  }