body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.nav-item {
    color: black;
    font-weight: 600;
    padding: 0px 10px;
}

.p-btn {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    background-image: linear-gradient(180deg, #F9A621 0%, #EF7C26 100%);
    color: white;
    border-color: aliceblue;
    border-radius: 30px 30px 30px 30px;
    padding: 25% 100% 25% 100%;
}

.navbar-brand img {
    max-width: 100%;
    /* Set the maximum width to 100% */
    height: 80px;
    /* Allow the height to adjust proportionally */
}

.custom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 74vh;
    /* Ensures full height */
}

.outline-form {
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
}

.input-group {
    margin-bottom: 20px;
    /* border-bottom: 1px red; */
    border: none;
    border-bottom: 1px solid #ccc;
}

.form-control {
    border: none;
    /* border-bottom: 1px solid #ccc; */
    border-radius: 0;
}

.input-group-text {
    background-color: transparent;
    border: none;
    
}
.input-group:hover{
    border-bottom-color: blue;
    box-shadow: 0 4px 8px 0 rgba(187, 185, 185, 0.575), 0 6px 20px 0 rgba(141, 139, 139, 0.19);
  }
  


.submit {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #F9A621 0%, #EF7C26 100%);
    color: #fff;
    border: none;
    cursor: pointer;
}


.form-control:focus {
    outline: none !important; /* Remove default focus outline */
    border: none !important;
    box-shadow: none !important;
}
.form-container{
    justify-content: center;
    align-items: center;
    padding: 0px 30%;
    margin-bottom: 70px;
}



*/ .max-width {
    max-width: 100%;
    /* Set the maximum width to 100% */
    height: auto;
    /* Allow the height to adjust proportionally */
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin-bottom: 70px;
  }

  /* .sidebar .table-responsive,
  .off-canvas-sidebar nav .navbar-collapse .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
  } */
  @media (max-width: 966px) {
    .form-container {
        padding: 0px 15%; /* Set padding to 0 for screens less than or equal to 786px */
    }
  }

/* Define a media query for smaller screens */
@media (max-width: 768px) {
    .nav-container {
        justify-content: left;
    }

    .max-width {
        max-width: 50%;
        /* Reduce the maximum width for smaller screens */
    }
    .form-container {
        padding: 0px 4%; /* Set padding to 0 for screens less than or equal to 786px */
    }

    /* .navbar-brand img {
        height: 70%; /* Reduce the maximum width for smaller screens */
}


