form.form-styled {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 2rem;
    margin-bottom: 2rem;
}
.form-styled label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}
.form-styled input,
.form-styled select,
.form-styled textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    background: #f9fafb;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-styled input:focus,
.form-styled select:focus,
.form-styled textarea:focus {
    border-color: #2563eb;
    outline: none;
}
.form-styled button {
    background: #2563eb;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.form-styled button:hover {
    background: #1d4ed8;
}
