body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    align-items: center;
    justify-content: center;
  
}

form {
    background-color: #fff;
    padding: 20px;
    margin-top: 90px; /* Adjust as needed */
    margin-bottom: 20px; /* Adjust as needed */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 600px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    margin-left: auto;
    margin-right: auto;
}
.form-heading {
   color: #16220b;
   font-size: 10px;
   background-color: #20d290;
   padding: 5px 10px;
   margin-bottom: 10px;
   border-radius: 5px;
 
}

.form-row {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.half-width {
    width: 48%;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
}
.button-container {
    width: 100%; /* Make the container full width */
    text-align: center; /* Center the content horizontally */
}
button {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block; /* Display as inline-block to center with text-align */
}

button:hover {
    background-color: #45a049;
}

nav {
    background-image: linear-gradient(45deg, #efefec, #0a6f23);
    padding: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 40px;
}

.logo-image {
    width: 200px;
    height: auto;
    padding-top: 25px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar li {
    margin-right: 20px;
}
.navbar a {
    text-decoration: none;
    color: rgb(235, 238, 196);
    font-weight: bolder;
    font-size: 25px;
    position: relative;
    transition: color 0.3s ease-in-out;
    font-family: 'Your Desired Font', sans-serif;
}

.navbar a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(25, 49, 15, 0.81);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
    border-radius: 2px;
}

.navbar a:hover {
    color: #05321c;
}

.navbar a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}
footer {
    background-color: #ade299a9;
    color: rgb(9, 4, 4);
    text-align: center;
    padding: 20px;
    height: 40px;
    line-height: 40px;
   
    position: relative;
    bottom: 0;
}