/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* mobile */
.emplois_form {
    box-sizing: border-box;
    max-width: 100%;
    padding: 2rem;
    color: inherit;
    font-family: inherit;
  }
  
  .emplois_form .emplois_wrapper {
    width: 100%;
  }
  
  .emplois_form .emplois_input_field {
    display: grid;
    margin: 1rem 0;
  }
  
  .emplois_form .emplois_input_field input,
  .emplois_form .emplois_input_field textarea {
    border-radius: 5px;
    min-height: 30px;
    border: 1px solid rgb(0, 0, 0, 0.2);
    transition: border ease-in 100ms;
  }
  
  .emplois_form .emplois_input_field input[type="file"] {
    border: none;
  }
  
  .emplois_form .emplois_button_send:hover {
    cursor: pointer;
  }
  
  .emplois_form .emplois_button_send {
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 5px;
  }
  
  
  .emplois_section article{
    box-shadow: 0 0px 2px rgba(0,0,0,0.05), 0 2px 2px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .emplois_section figure{
    width: 100%;
    object-fit: cover;
  }
  
  .emplois_section img{
    width: 100%;
    min-height: 257px;
  }
  
  .emplois_section ul{
    margin: 1rem 0;
  }
  
  .emplois_section li{
    list-style: none;
  }
  
  .emplois_section h2{
    margin: 1rem 0;
  }
  
  .emplois_link_button{
    display: inline-block;
    padding: .5rem 1.5rem;
    border: none;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .emplois_page{
    box-sizing: border-box;
    padding: 1rem;
  }
  
  .emplois_page header{
    text-align: center;
  }
  
  .emplois_page header h1{
    font-size: 5rem;
    margin: 2rem 0;
  }
  
  .emplois_page header h1{
    margin: 2rem 0;
  }
  
  .emplois_page .emplois_section{
    margin-top: 2rem;
  }
  
  .emplois_list li{
    list-style: none;
  }
  
  .emplois_page .emplois_page_section div{
    display: block;
    max-width: 1024px;
    margin: auto;
  }
  .emplois_page .emplois_page_section div :first-child{
    margin: 1rem 0;
    margin-right: 1rem;
  }
  
  .emplois_input_field input:not(input[type="file"]):focus, 
  .emplois_input_field textarea:focus{
    border:"1px solid rgb(0 6 194);
  }
  
  /* medium */
  @media screen and (min-width: 768px) {
    .emplois_form {
      max-width: 700px;
      margin: auto;
    }
  
    .emplois_form .emplois_wrapper {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 0 1rem;
    }
  
    .emplois_form .emplois_wrapper .emplois_input_field {
      grid-column: span 6;
    }
  
    .emplois_form .emplois_button_send {
      width: min-content;
    }
  
    .emplois_section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  
    .emplois_section ul{
      display: flex;
      justify-content: space-around;
      margin: 0;
    }
  
    .emplois_page{
      width: 95%;
      margin: auto;
    }
  }
  
  /* large */
  @media screen and (min-width: 1440px) {
    .emplois_form {
      max-width: 900px;
    }
    .emplois_page{
      width: 90%;
    }
  }
  