* {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    text-align: center;
    color: #444;
    font-size: 2em;
    margin-bottom: 20px;
}

fieldset {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 40px;
}

legend {
    font-weight: bold;
    font-size: 1.2em;
}

input, select {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s;
}

button:hover {
    background: #218838;
}

span {
    font-size: 0.9em;
    color: red;
}

#city, #lat, #lon, #state, #county {
    font-weight: bold;
    color: #0056b3;
}

#yn, #sugPass, #retype {
    font-style: italic;
}

fieldset {
    border: 2px solid #ccc; 
}

input:focus, select:focus {
    outline: none;
    border-color: #007bff; 
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button:active {
    transform: scale(0.98); 
}

label {
    font-weight: bold;
    display: block; 
    margin-top: 10px;
}

#notFound {
    display: block;
    margin-top: 5px;
    color: red;
    font-weight: bold;
}
