livestock.css/* =========================================================
   LIVESTOCK SIGNUP FORM
========================================================= */

#zpcrm-signup-app {

    max-width: 1100px;

    margin: 50px auto;

    padding: 0 20px;

    font-family: Arial, sans-serif;
}

/* =========================================================
   PROGRESS BAR
========================================================= */

.zpcrm-progress-wrapper {

    position: relative;

    margin-bottom: 50px;
}

.zpcrm-progress-line {

    position: absolute;

    top: 24px;

    left: 0;

    width: 100%;

    height: 4px;

    background: #e5e7eb;

    z-index: 1;
}

.zpcrm-progress {

    display: flex;

    justify-content: space-between;

    position: relative;

    z-index: 2;
}

.zpcrm-step {

    text-align: center;

    flex: 1;

    position: relative;
}

.zpcrm-step .circle {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #d1d5db;

    color: #111827;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    margin: 0 auto 12px;

    transition: 0.3s ease;
}

.zpcrm-step.active .circle {

    background: #2563eb;

    color: #fff;

    box-shadow: 0 6px 20px rgba(37,99,235,0.25);
}

.zpcrm-step .label {

    font-size: 14px;

    font-weight: 600;

    color: #374151;
}

/* =========================================================
   CARD
========================================================= */

.zpcrm-card {

    background: #fff;

    border-radius: 18px;

    padding: 35px;

    box-shadow: 0 10px 35px rgba(0,0,0,0.08);

    border: 1px solid #f1f5f9;
}

.zpcrm-card h2 {

    margin-top: 0;

    margin-bottom: 30px;

    font-size: 28px;

    color: #111827;

    font-weight: 700;
}

/* =========================================================
   GRID
========================================================= */

.zpcrm-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.zpcrm-field.full {

    grid-column: span 2;
}

/* =========================================================
   FIELDS
========================================================= */

.zpcrm-field {

    display: flex;

    flex-direction: column;
}

.zpcrm-field label {

    margin-bottom: 10px;

    font-weight: 600;

    color: #374151;

    font-size: 14px;
}

.zpcrm-field input,
.zpcrm-field textarea,
.zpcrm-field select {

    width: 100%;

    padding: 15px 18px;

    border: 1px solid #d1d5db;

    border-radius: 12px;

    font-size: 15px;

    transition: 0.3s ease;

    background: #fff;

    color: #111827;

    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;
}

.zpcrm-field input:focus,
.zpcrm-field textarea:focus,
.zpcrm-field select:focus {

    outline: none;

    border-color: #2563eb;

    box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

/*
|--------------------------------------------------------------------------
| Select Dropdown Styling
|--------------------------------------------------------------------------
*/

.zpcrm-field select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #dcdfe5;
    border-radius: 10px;
    background-color: #ffffff;
    color: #1f2937;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    
    /*
    Dropdown Icon
    */

    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%236b7280' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 45px;
}

/*
|--------------------------------------------------------------------------
| Hover
|--------------------------------------------------------------------------
*/

.zpcrm-field select:hover {
    border-color: #2563eb;
}

/*
|--------------------------------------------------------------------------
| Focus
|--------------------------------------------------------------------------
*/

.zpcrm-field select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/*
|--------------------------------------------------------------------------
| Dropdown Options
|--------------------------------------------------------------------------
*/

.zpcrm-field select option {
    color: #111827;
    background: #ffffff;
    padding: 10px;
}

/*
|--------------------------------------------------------------------------
| Labels
|--------------------------------------------------------------------------
*/

.zpcrm-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/*
|--------------------------------------------------------------------------
| Mobile Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .zpcrm-field select {
        font-size: 14px;
        height: 50px;
    }
}

/* =========================================================
   TEXTAREA
========================================================= */

.zpcrm-field textarea {

    min-height: 120px;

    resize: vertical;
}

/* =========================================================
   SUMMARY BOX
========================================================= */

.zpcrm-summary-box {

    background: #eff6ff;

    border: 1px solid #bfdbfe;

    padding: 20px;

    border-radius: 14px;

    margin-bottom: 25px;
}

.zpcrm-summary-box p {

    margin: 0;

    color: #1e3a8a;

    font-weight: 500;
}

/* =========================================================
   CONTRACT / INFO BOX
========================================================= */

.zpcrm-contract-box {

    background: #f9fafb;

    border: 1px solid #e5e7eb;

    padding: 20px;

    border-radius: 14px;

    margin-top: 25px;
}

.zpcrm-contract-box strong {

    display: block;

    margin-bottom: 10px;

    color: #111827;
}

.zpcrm-contract-box p {

    margin-bottom: 0;

    color: #6b7280;

    line-height: 1.6;
}

/* =========================================================
   CHECKBOX
========================================================= */

.zpcrm-checkbox {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    font-size: 14px;

    color: #374151;
}

.zpcrm-checkbox input {

    width: 18px;

    height: 18px;
}

/* =========================================================
   NAVIGATION
========================================================= */

.zpcrm-navigation {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 35px;
}

.zpcrm-navigation button {

    border: none;

    padding: 14px 28px;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

/* Back */

.zpcrm-prev {

    background: #f3f4f6;

    color: #111827;
}

.zpcrm-prev:hover {

    background: #e5e7eb;
}

/* Next */

.zpcrm-next {

    background: #2563eb;

    color: #fff;
}

.zpcrm-next:hover {

    background: #1d4ed8;
}

/* Submit */

.zpcrm-submit {

    background: #16a34a;

    color: #fff;
}

.zpcrm-submit:hover {

    background: #15803d;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 768px) {

    .zpcrm-grid {

        grid-template-columns: 1fr;
    }

    .zpcrm-field.full {

        grid-column: span 1;
    }

    .zpcrm-progress {

        gap: 10px;
    }

    .zpcrm-step .label {

        font-size: 11px;
    }

    .zpcrm-step .circle {

        width: 42px;

        height: 42px;
    }

    .zpcrm-card {

        padding: 25px;
    }

    .zpcrm-navigation {

        flex-direction: column;

        gap: 15px;
    }

    .zpcrm-navigation button {

        width: 100%;
    }
}