*{
    margin: 0;
    padding: 0;
}

body {
    /* background-color: #e1e17b57; */
    background-color: #72722d91;
}
  
.navbar {
    background-color: #e1e17b57;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    padding: 7px 20px;
    font-family: Brush Script MT, Brush Script Std, cursive;
    border: 4px solid #72722d91;
    border-radius: 10px;
    overflow: hidden;
    
}

.navbar-brand a {
color: #333;
font-size: 32px;
font-weight: bold;
text-decoration: none;
}

.navbar-links {
display: flex;
justify-content: flex-end;
list-style: none;
margin: 0;
/* padding: 0; */
padding-right: 32px;
}

.navbar-links li {
margin-left: 20px;
}

.navbar-links a {
color: #333;
font-size: 31px;
text-decoration: none;
font-weight: 300;
padding-right: 10px;
}
  
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    box-sizing: content-box;
    margin-left: 80px;
    margin-right: 80px;
    background-color: #5d622b85;
    border-radius: 28px;
    box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.2);
    
}
  

label {
    font-family:'Pacifico';
    font-size: 28px;
    margin-top: 20px;
    font-weight: 600;
    font-style: oblique ;
}

input[type="text"],
input[type="date"],
input[type="time"],
input[type="number"] {
padding: 10px 20px;

font-size: 20px;
border: none;
background-color: #f3f3f3;
border-radius: 5px;
margin-top: 10px;
width: 77%;
box-sizing: border-box;
border-radius: 10px;
box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.2);


}

input[type="submit"] {
background-color: #72722d91;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 24px;
font-weight: bold;
margin-top: 19px;
cursor: pointer;
margin-bottom: 14px;
box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.2);

}

input[type="submit"]:hover {
background-color: #e1e17b57;
}


.back-button {
    display: inline-block;
    /* padding: 8px 16px; */
    /* padding-top: 10px; */
    border-radius: 4px;
    text-decoration: none;
    /* color: #333; */
    color: #8b8282;
    margin-bottom: 9px;
    margin: 5px;
    margin-top: 6px;
    font-size: 24px;
  }
  
  .back-button:hover {
    background-color: #e1e17b57;
    border: 3px solid #ccc;
    opacity: 0.7;
    border-radius: 12px;
    
  }

  footer {
    /* background-color: #f2f2f2; */
    padding: 10px;
    text-align: center;
  }
  
  .connect {
    display: flex;
    justify-content: center;
  }
  
  .connect a {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    margin: 12px;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline */

  }
  
  .connect a:hover {
    transform: scale(1.2);
  }
