*{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family: Arial, sans-serif;
    }

    body{
      background:#fff;
      padding:40px 60px;
      color:#000;
    }

    .container{
      width:90%;
      margin:auto;
    }

    .err-title{
      text-align:center;
      color:#003b7a;
      font-size:20px;
      font-weight:700;
      margin-bottom:30px;
    }
    .title{
      text-align:center;
      color:#003b7a;
      font-size:25px;
      font-weight:700;
      margin-bottom:30px;
    }

    .progress-wrapper{
        display:flex;
        align-items:center;
        gap:15px;
        margin-bottom:50px;
    }

    .progress-bar{
        flex:1;
        height:10px;
        background:#003b7a;
        border-radius:2px;
    }

    .progress-text{
        font-size:15px;
        font-weight:500;
    }

    .upload-group{
      margin-bottom:30px;
    }

    .upload-label{
      display:block;
      font-size:16px;
      font-weight:700;
      margin-bottom:10px;
    }

    input[type="file"]{
      font-size:12px;
      width: 100%;
    }

    /* Optional custom button styling */
    input[type="file"]::file-selector-button{
      padding:10px 18px;
      border:1px solid #888;
      background:#fff;
      cursor:pointer;
      border-radius:3px;
      margin-right:12px;
    }

    input[type="file"]::file-selector-button:hover{
      background:#e9e9e9;
    }
    .instruction{
      text-align: center;
      color: #003b7a;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 30px;
    }
    .errMsgs{
      color:red;
      font-size: 18px;
      margin-bottom: 10px;
      text-align: center;
    }

    #btn_submit {
        background-color: #003469;
        color: #fff;
        font-size: 16px;
        font-family: Montserrat, sans-serif;
        border: 1px solid transparent;
        box-shadow: 1px 1px 2px #003469;
        box-shadow: 1px 1px 2px rgba(105, 106, 105, .8);
        -webkit-box-shadow: 1px 1px 2px rgba(105, 106, 105, .8);
        -moz-box-shadow: 1px 1px 2px rgba(105,106,105,.8);
        -webkit-appearance: none;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        cursor: pointer;
        padding: .7em 2em;
        margin-bottom: 3em;
        float: right;
    }