/* applicant_document_upload/static/src/css/style.css */

/* Style the container */
.applicant-upload-container {
    max-width: 800px; /* Limit the width of the container */
    margin: 20px auto; /* Center the container horizontally */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
  }
  
  /* Style the form groups */
  .form-group {
    margin-bottom: 15px;
  }
  
  /* Style the labels */
  label {
    font-weight: bold;
  }
  
  /* Style the file input fields */
  .form-control-file {
    margin-top: 5px;
  }
  
  /* Style the submit button */
  .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  /* Style the error message */
  .alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
  }
  