
    /* montserrat-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url("fonts/montserrat-v25-latin-regular.woff2") format("woff2"), url("fonts/montserrat-v25-latin-regular.woff") format("woff"); }
  /* montserrat-700 - latin */
  @font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url("fonts/montserrat-v25-latin-700.woff2") format("woff2"), url("fonts/montserrat-v25-latin-700.woff") format("woff"); }
    /* Apply the Google Font to the body */
    * {
        font-family: "Montserrat" ,'Helvetica' !important;
      
      }
    body {
        
        /* Gradient background */
        /* background: linear-gradient(135deg, #10c06c, #10c06c); */
        color: #fff; /* White text */
        min-height: 100vh; /* Ensure the gradient covers the full viewport height */
    }

    .navbar {
        background-color: transparent; /* Transparent to show gradient */
    }

    .navbar-brand, .navbar-nav .nav-link {
        color: #fff;
    }

    .navbar-brand:hover, .navbar-nav .nav-link:hover {
        color: #ccc;
    }

    .btn-custom {
        background-color: #c00; /* Red button background */
        color: #fff; /* White text */
        border: none;
        padding: 15px 30px; /* Chunky buttons */
        font-size: 16px;
        border-radius: 5px;
        margin: 5px;
    }

    .btn-custom:hover {
        background-color: #a00; /* Darker red on hover */
    }

    
    .form-control {
        background-color: #222;
        color: #fff;
        border: 1px solid #555;
    }

    .form-control:focus {
        background-color: #222;
        color: #fff;
        border-color: #c00;
        box-shadow: none;
    }

    .alert {
        color: #fff;
        background-color: #c00;
        border-color: #a00;
    }

    /* Optional: Adjust headings and text styles */
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700; /* Bold */
    }

    p, label, input, button, a {
        font-weight: 400; /* Regular */
    }

    /* Ensure footer stays at the bottom */
    html, body {
        height: 100%;
    }

    /* Additional styling for content */
    .content {
        min-height: calc(100vh - 56px); /* Adjust for navbar height */
    }

    /* unvisited link */
    a:link {
    font-weight: 700;
    color: white;
    }

    /* visited link */
    a:visited {
        font-weight: 700;
    color: white;
    }

    /* mouse over link */
    a:hover {
        font-weight: 700;
    color: white;
    }

    /* selected link */
    a:active {
        font-weight: 700;
    color: white;
    }

    .container {
        width:1000px !important;
        margin-top: 20px;
    }

    .container80percent {
        width:80% !important;
        margin-top: 20px;
    }

  




          /* Style the page */
     
        .container {
            margin: 0 auto;
            width: 50%;
            background-color:  'transparent';
            padding: 20px;
            border-radius: 8px;
            text-align: left;
            /* box-shadow: 0 0 10px #ccc; */
        }
        h1 {
            color: #000;
        }
        img.logo {
            width: 100px;
            height: auto;
        }
        form {
            margin-top: 20px;
        }
        label {
            display: block;
            text-align: left;
            margin-bottom: 5px;
            color: #fff;
        }
        input[type="text"], input[type="file"], select {
            width: 90%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        input[type="submit"] {
            background-color: #000;
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        input[type="submit"]:hover {
            background-color: #000000;
        }
        .error {
            color: red;
            margin-bottom: 15px;
        }
        .progress-bar {
            width: 90%;
            background-color: #f3f3f3;
            border: 1px solid #ccc;
            border-radius: 5px;
            overflow: hidden;
            height: 30px;
            margin-bottom: 10px;
        }

       
         /* over ride bootstrap */

         input, select {
            font-family: "Montserrat" !important;

         }

         .btn-primary {
            font-family: "Montserrat" !important;
            color: #fff;
            background-color: #000000 !important;
            border-color: #000000 !important;
        }