body {
    background-color: #2c2c2c; /* Grey background */
    color: #e0e0e0; /* Light grey text color for readability */
    font-family: Arial, sans-serif;
    margin: 0px;
    text-shadow: none;
}

center {
    color: #f0f0f0; /* Lighter grey for centered text elements */
}

img {
    border: 0;
}

table.reg {
    width: 600px;
    margin: 40px auto;
}

div.copy {
    color: #aaa;
    font-size: 18px;
    text-align: center;
}

div.errors {
    color: #ff7373; /* Light red for error messages */
    font-weight: bold;
    text-align: center;
}

table.form {
    width: 100%;
    color: #f5f5f5; /* Light grey for form text */
    margin: 15px 0;
    font-size: 22px;
    border-spacing: 5px;
}

input, select {
    width: 100%;
    max-width: 400px; /* Limit max width for better styling */
    padding: 10px;
    background-color: #3e3e3e; /* Darker grey for inputs */
    color: #ffffff;
    border: 1px solid #666;
    font-size: 23px;
    border-radius: 4px;
    box-shadow: 0px 0px 3px #000;
}

input:focus, select:focus {
    border-color: #00b0f2;
    box-shadow: 0px 0px 5px #00b0f2;
    color: #ffffff;
}

input.sbm {
    width: 70%;
    padding: 10px 15px;
    background-color: #00b0f2;
    color: #ffffff;
    border: 0;
    font-size: 20px;
    border-radius: 4px;
    box-shadow: 0px 0px 3px #333;
    cursor: pointer;
}

input.sbm:hover {
    background-color: #00a3e0;
    box-shadow: 0px 0px 5px #ffffff;
    color: #ffffff;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px; /* Larger checkbox */
    vertical-align: middle;
}

label {
    font-size: 18px;
    color: #e0e0e0;
    vertical-align: middle;
    margin-left: 5px;
}
