.cattleman-form-wrapper {
    max-width: 750px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

.cattleman-form h2 {
    text-align: center;
    margin-bottom: 25px;
}

.cattleman-form h3 {
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 5px;
}

.cattleman-form .section {
    margin-bottom: 25px;
}

.cattleman-form input,
.cattleman-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.cattleman-form .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cattleman-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.cattleman-form .checkbox {
    font-weight: normal;
    margin-bottom: 20px;
}

.cattleman-form button {
    width: 100%;
    padding: 14px;
    background: #1e7f43;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.cattleman-form button:hover {
    background: #155c31;
}

.success-message {
    margin-top: 20px;
    padding: 15px;
    background: #e7f6ec;
    border-left: 4px solid #1e7f43;
    color: #155c31;
}
.cattleman-form .checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px;
    font-weight: normal !important;
    margin: 20px 0 !important;
    line-height: 1.5 !important;
    cursor: pointer !important;
}

.cattleman-form .checkbox input[type="checkbox"] {
    margin-top: 3px !important;
    width: auto !important;
}