/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');*/
/* {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*    font-family: 'Poppin', sans-serif;*/
/*}*/
/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #29333a;
}
  h1 {
    color: #0d375a;
}

<style>
#brand_name{
    
}
/* Header Section */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  font-family: "Times New Roman", Times, serif;
  gap: 20px; /* Ensures even spacing */
  flex-wrap: nowrap; /* Allows wrapping on smaller screens */
  text-align: center;
  line-height: 1;
  background-color: #FFF;
  
}

/* Logo Styling */
.header .logo img {
  width: 140px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  padding: 20px;
}

/* Title Styling */
.header .title {
  width: 900px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  text-align: left;
  padding: 10px;
}

.header .title h1 {
  color: #bc4749;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 0;
}

.header .title p {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
  line-height: 0.5;
  text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .header .logo img {
    width: 120px;
  }

  .header .title h1 {
    font-size: 2rem;
  }

  .header .title p {
    font-size: 0.9rem;
  }
}


/* Notice Bar */
#notice_bar_top{
    background-color: #e0e1dd;
    color: white;
    padding: 5px 0;
}

.marq {
    color: #343a40;
}
  
  .menu{
    margin-right: 7rem !important;
    margin-bottom: 10px;
    padding-bottom: 20px;
    position:relative;
  }

.topnav {
  overflow: hidden;
  background-color: #2f3e46;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #e36414;
  color: white;
}

.topnav .icon {
  display: none;
}


.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
 

.footer {
    background-color: #343a40;
    color: #fff;
    padding: 5px 0;
    
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    padding: 5px;
}

.footer-section h2 {
    margin-bottom: 1px;
    font-size: 1.5em;
}

.footer-section p, .footer-section ul {
    font-size: 1em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-section h2 {
        font-size: 1.2em;
    }

    .footer-section p, .footer-section ul {
        font-size: 0.9em;
    }
}

@media (max-width: 320px) {
    .login_form {
        width: 100%; /* Reduce width for small screens */
        padding: 10px; /* Add more padding */
    }
    .containt_head h2 {
        font-size: 1.2em; /* Reduce heading size on extra small screens */
    }

    #signin .fieldset_actions button {
        width: 80%; /* Further adjust button width for smaller screens */
        margin: 20px 10%;
    }

    .fieldset a {
        font-size: 0.7em; /* Reduce link font size for readability */
    }
}



/* General Styling */
.login-reg {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.login-reg h2 {
    margin: 0px;
    color: #495057;
}

.login-reg Form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:2px;
}
.formbox-i{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    /*box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;*/
    padding:20px 10px 20px 10px;
    margin:5px;
    justify-content: space-around;
    
}
.containtbox {
    /*max-width: 200px;*/
    /*margin-bottom: 15px;*/
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    
}
.login-reg label {
    text-align: left;
    font-weight: bold;
    background-color: #e5e5e5;
    color:#495057;
    font-size: 12px;
    border-radius: 3px;
    padding:7px;
}

.login-reg input {
    padding: 7px;
    margin-top: 2px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 12px;
}
.login-reg select {
    padding: 7px;
    margin-top: 2px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 12px;
}
/* General button styling */
.login-reg button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background-color: #fca311;
    color: white;
    font-size: 14px;
    cursor: pointer;
    max-width: 200px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* Specific style for the Final Submit button */
.login-reg .submit {
    background-color: #4f772d;
}
.login-reg .move {
    background-color: #495057;
}
/* Disabled state for Final Submit */
.login-reg .submit:disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
    box-shadow: none;
}

/* Hover effect */
.login-reg button:hover:not(:disabled) {
    background-color: #fb8b24;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}


/* CAPTCHA */
.captcha-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eaeaea;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
}

.captcha-box span {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
}

.captcha-box button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* Links */
.login-reg p {
    margin-top: 15px;
    font-size: 14px;
}

.login-reg a {
    color: #007bff;
    text-decoration: none;
}

.login-reg a:hover {
    text-decoration: underline;
}
/* Table Styles */
table {
    width: 100%;
    /*max-width: 850px; */
    /*border-collapse: collapse;*/
    margin-top: 10px;
    font-size: 12px; 
    padding:5px;
   
}
/* Table Borders */
table, th{
    
    color:#495057;
    border-radius: 3px;
}

/* Header and Cell Styling */
th, td {
    padding: 5px;
    text-align: center;
}

/* Header Background */
th {
    background-color: #dee2e6;
    font-size: 12px; /* Ensure header text matches the table size */
    white-space: nowrap; /* Prevent headers from wrapping */
}

/* Input Fields in Table */
td input {
    width: 80px; /* Adjust input width for better fit */
    font-size: 12px; /* Reduce font size */
    padding: 0px;
}


/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 15px;
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        width: 90%;
    }
}

</style>
