body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #b8aeae; /* Light grey background */
    color: #333; /* Dark grey text */
}

a {
    color: #FFA500; /* Orange links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #800080; /* Purple hover */
}

button, input[type="submit"] {
    background-color: #800080; /* Purple button */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover {
    background-color: #FFA500; /* Orange hover */
}

input[type="text"], input[type="email"], input[type="password"], select, textarea {
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    width: 50%;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
    border-color: #800080; /* Purple focus */
    outline: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}
/* Header style */
header {
    background-image: url(images/multiple.jpg);
    color: white;
    padding: 20px;
    text-align: center;
}

header img {
    width: 150px;
    height: auto;
}
header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
header nav li {
    display: inline-flex;
    float: none;
}
header nav li a {
    display: block;
    color: white;
    background-color: #800080;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bold;
}
header nav li a:hover {
    color: lime;
}
/* Footer style */
footer {
    background-color: #f0f0f0;
    color: black;
    padding: 20px;
    text-align: center;
}
footer nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
footer nav li {
    display: inline-flex;
    float: none;
}
footer nav li a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bold;
}
footer nav li a:hover {
    color: lime;
}
.theform{
    margin: 80px;
}
