
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: none;
        z-index: 9999;
      }
      .loading-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
      }

      .loading-content {
        width: 90%;
        max-width: 300px;
        padding: 20px;
      }
      
      .loading-content h5 {
        font-size: 1.1rem;
      }

      body {
        font-family: Arial, sans-serif;
        background-color: #f5f5f5;
        padding: 20px;
      }

      .form-container {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .form-header {
        background: linear-gradient(135deg, #1e3c72, #014d6d);
        color: white;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .header{
        display: flex;
        flex-direction: row;
        img{
            width: 7rem;
            height: 7rem;
        }
      }

      .form-header h1 {
        font-size: 1.25rem;
        color: #ffca06;
        font-weight: normal;
      }

      .form-content {
        padding: 20px;
      }

      .section {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
      }

      .section-title {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: 20px;
        color: #1e3c72;
        font-size: 1.5rem;
        font-weight: bold;
      }

      .section-title::before {
        content: "●";
        color: #1e3c72;
      }

      .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
      }

      .form-group {
        flex: 1;
        gap: 10px;
      }
      input{
        color: #014d6d;
      }
      .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #333;
        font-size: 14px;
        font-weight: bold;
      }

      .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
      }

      .checkbox-group input[type="checkbox"] {
        margin-top: 3px;
      }

      .checkbox-group label {
        font-weight: normal;
        font-size: 14px;
        line-height: 1.4;
      }

      .required {
        color: #d32f2f;
      }

      .form-group input,
      .form-group select {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        background: white;
        color: #014d6d;
      }

      .form-group input:focus,
      .form-group select:focus {
        outline: none;
        color: #014d6d;
        border-color: #014d6d;
        box-shadow: 0 0 0 2px rgba(42, 82, 152, 0.1);
      }

      .date-input {
        position: relative;
      }

      .date-selector {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        color: #014d6d;
        font-size: 12px;
        cursor: pointer;
        text-decoration: none;
      }
      .upload-area {
        border: 2px dashed #ddd;
        border-radius: 6px;
        padding: 40px;
        text-align: center;
        background: #fafafa;
        color: #666;
        cursor: pointer;
        position: relative;
        transition: border-color 0.3s ease, background-color 0.3s ease;
      }

      .upload-area:hover {
        border-color: #014d6d;
        background: #f0f4ff;
      }

      .upload-area.dragover {
        border-color: #28a745;
        background-color: #e8f5e9;
      }

      .upload-placeholder {
        font-size: 12px;
        color: #667eea;
        margin-top: 10px;
        font-weight: 500;
      }

      .document-upload {
        min-height: 160px;
      }

      .preview-area {
        margin-top: 15px;
        text-align: center;
      }

      .preview-area img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      }

      .preview-area a {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 16px;
        background: #004f71;
        color: #fff;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
      }

      .preview-area a:hover {
        background: #00394f;
      }

      .photo-upload {
        min-height: 90px;
      }

      #photoPreview img {
        max-width: 120px;
        height: auto;
        border-radius: 50%;
        margin-top: 10px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      }


      .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
      }

      .checkbox-group input[type="checkbox"] {
        margin-top: 3px;
      }

      .checkbox-group label {
        font-weight: normal;
        font-size: 14px;
        line-height: 1.4;
      }

      .form-actions {
        display: flex;
        gap: 15px;
        justify-content: flex-end;
        button {
          color: #ffca06;
        }
      }

      /* ---- MOBILE VIEW ---- */
      @media (max-width: 768px) {
        .form-actions {
          flex-direction: column;
          align-items: stretch;
          footer {
            display: flex;
            flex-direction: row;
            gap: 10px;
            text-align: center;
          }
        }
      }

      .btn {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        display: inline-block;
      }

      .btn-outline {
        background: white;
        color: #014d6d;
        border: 1px solid #014d6d;
      }

      .btn-outline:hover {
        background: #f0f4ff;
      }

      .btn-primary {
        background: #014d6d;
        color: white;
      }

      .btn-primary:hover {
        background: #1e3c72;
      }

      .three-column {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
      }

      .two-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      hr{
        margin-bottom: 1rem;
      }
      footer{
        display: flex;
        justify-content: center;
        flex-direction: row;
      }
      @media (max-width: 768px) {
        .form-row,
        .three-column,
        .two-column {
          flex-direction: column;
          grid-template-columns: 1fr;
          gap: 15px;
        }
      }