/* General page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    margin: 20px;
    padding: 0;
}

/* Marquee styling */
marquee {
    color: #ffffff;
    background-color: #007BFF;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
}

/* Fieldset and form layout */
fieldset {
    width: 50%;
    margin: auto;
    padding: 20px;
    border: 2px solid #007BFF;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

legend {
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
    padding: 0 10px;
}

/* Table layout for form */
table {
    width: 100%;
}

td {
    padding: 10px;
    vertical-align: top;
}
/*
/* Input styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="file"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
    border-color: #007BFF;
    outline: none;
}

/* Button styling */
input[type="submit"],
input[type="reset"] {
    padding: 10px 20px;
    margin: 10px 5px 0 0;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
    background-color: #0056b3; *\
}
