.application-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .application-header img {
    width: 100px;
    height: auto;
  }
  
  .application-header h1 {
    font-size: 24px;
    color: #333;
  }

  .field {
    margin-bottom: 15px;
  }
  
  .field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .field input[type="text"],
  .field input[type="email"],
  .field input[type="tel"],
  .field select,
  .field textarea,
  .field input[type="file"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
  }
  
  .field textarea {
    height: 100px;
  }
  
  .actions {
    text-align: center;
  }
  
  .actions button,
  .actions input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
  }
  
  .actions button:hover,
  .actions input[type="submit"]:hover {
    background-color: #000;
  }
  
  #error_explanation {
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  #error_explanation h2 {
    margin-top: 0;
  }
  
  #error_explanation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .progress-bar {
    height: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
  }
  
  .progress-bar-inner {
    height: 100%;
    width: 0;
    background-color: #028004;
    transition: width 0.5s ease-in-out;
  }
  
  .progress-bar-percentage {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    color: #333;
    transition: color 0.5s ease-in-out;
  }
  
  @media (max-width: 768px) {
    .form-container {
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: 10px;
    }
  }