body {
    font-family: Helvetica, sans-serif;
    background-color: #f4f6f9;
    margin:0;
    padding:30px;
    color: #333;
}

h1, h2 {
    text-align: center;
    color: #222;
}

form, table {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width:1000px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


fieldset {
    border:none;
}

legend {
    font-size:20px;
    font-weight: bold;
    margin-bottom: 10px;
}

input[type = "text"],
input[type = "password"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type = "submit"],
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor:pointer;
    font-size:14px;
}

input[type="submit"]:hover,
button:hover {
    background-color: #0056b3;
}

table {
    border-collapse: collapse;
}

th {
    background-color: #007bff;
    color:white;
    padding: 12px;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration:underline;
}
p {
    text-align: center;
    
}






























