/* Style for the logo tab */
.logo-tab {
    background-color: #333; /* Background color for the logo tab */
    padding: 20px 0; /* Adjust the padding as needed */
    text-align: center;
}

/* Style for the logo */
.logo {
    display: inline-block;
    max-width: 100%;
    height: 40px; /* Limit the height of the logo to 50 pixels */
}

/* Style for the buttons tab */
.buttons-tab {
    background-color: rgb(70, 70, 70); /* Background color for the buttons tab */
    padding: 20px 0; /* Adjust the padding as needed */
    padding-bottom: 30px;
    text-align: center;
}

/* Style for the buttons */
.buttons {
    margin-top: 10px;
}

.buttons a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid #fff;
    margin: 0 20px;
    border-radius: 5px;
}

.buttons a:hover {
    background-color: #fff;
    color: #333;
}

.buttonarea {
    text-align: center;
    background-color: #F1EFEF;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Base Button Styles */
input[type="submit"] {
    padding: 10px 20px;
    background-color: #CCC8AA;
    color: #191717;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 16px;
}

.submit{
    text-align: center;
}
  
/* Hover Effect */
input[type="submit"]:hover {
    background-color: #191717;
    color: #CCC8AA;
    transform: scale(1.05); /* Slight zoom effect on hover */
}
  
/* Focus (Keyboard Navigation) */
input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.8); /* Light blue shadow on focus */
}

/* Add your CSS styles here */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAF1E4;
}

header {
    margin-top: 10px ;
    margin-right: 10px ;
    margin-left: 10px ;
    background-color: #CCC8AA;
    color: #191717;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}
  
main {
    padding: 10px;
}
  
.form {
    background-color: #F1EFEF;
    padding: 5px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form legend {
        margin-bottom: 10px;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="radio"],
form input[type="checkbox"],
form input[type="email"],
form input[type="number"],
form input[type="date"]
{
    padding: 10px;
    margin-bottom: 15px;
    border: 1.5px solid #7D7C7C;
    border-radius: 5px;
}

form fieldset {
    border: 1.5px solid #7D7C7C;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

form fieldset legend {
    font-weight: bold;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}