.neoform-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.neoform .form-group {
    margin-bottom: 15px;
}
.neoform label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}
.neoform label .required {
    color: #d9534f;
    font-weight: bold;
}
.neoform input[type="text"],
.neoform input[type="email"],
.neoform input[type="url"],
.neoform textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.neoform input:focus,
.neoform textarea:focus {
    border-color: #0073aa;
    outline: none;
}
.neoform textarea {
    height: 120px;
    resize: vertical;
}
.neoform-submit-button {
    background-color: #0085ba;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
.neoform-submit-button:hover {
    background-color: #005a87;
}
.neoform-messages div {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.neoform-messages .success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}
.neoform-messages .error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}