.button {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 0.6em 1.2em;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
.button:hover {
    background-color: #003d80;
}

.form-control {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.form-label {
    font-weight: bold;
    margin-bottom: 0.3em;
    display: block;
}