#dating-registration-form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
}
input, select, textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}
button {
    background: #ff4081;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
}
button:hover {
    background: #d81b60;
}

.error-message {
    color: red;
    font-size: 12px;
}
