/* WHITE FORM (HIRING/SIMULATION) */

.white-form-layout {
    background: #FFFFFF;
    box-shadow: 0px 50px 100px rgba(0, 79, 139, 0.1);
    border-radius: 2px; 
  }
  
  .white-form-layout .title-container {
    width: 100%;
    background: #F7F9FF;
    border-radius: 2px;
    padding-left: 44px;
    padding-top: 55px;
    padding-bottom: 20px;
    box-sizing: border-box;   
  }
  
  .white-form-layout .title-container .title {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: normal;  
    color: #004F8B;  
  }
  
  .white-form-layout .white-form  {
     width: 100%;
     display: flex; 
     flex-wrap: wrap;
     padding: 62px 44px;
  }
  
  .white-form-layout .white-form .first-column {
    margin-right: 20px; 
  }
  
  .white-form-layout .white-form .subtitle {
    margin: 40px 0px; 
    width: 100%;
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: normal;  
    color: #004F8B;    
  }
  
  .white-form .input-container,
  .white-form .input-dropdown-container {
    width: calc((100% - 20px) / 2);
    margin-bottom: 32px; 
  }
  
  .white-form .description-text {
    width: 100%;
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    color: #004F8B;
    margin-bottom: 20px;
  }
  
  @media(max-width: 560px) {
    .white-form-layout .title-container {
      padding-left: 20px; 
    }
  
    .white-form-layout .title-container .title {
      font-size: 24px;
    }
  
    .white-form-layout .white-form {
      padding: 32px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .white-form-layout .white-form .first-column {
      margin-right: 0; 
    }
  
    .white-form .input-container, 
    .white-form .input-dropdown-container {
      width: 100%;
      margin-bottom: 20px; 
    }
  
    .white-form-layout .white-form .subtitle {
      font-size: 16px; 
    }
  
    .white-form .description-text {
      font-size: 14px;
    }
  }