.tz-title {
    font-size: 36px;
    /* font-weight: 800; */
    color: #1e293b;
    padding: 80px 0 20px;
    position: relative;
}

.tz-title::after {
    /* content: ''; */
    position: absolute;
    bottom: 10px;
    left: 40px;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.tz-form {
    /* padding: 0 40px 40px; */
}

.tz-hidden {
    display: none;
}

.tz-form-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tz-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tz-card:hover {
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.tz-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    /* border-bottom: 2px dashed #cbd5e1; */
    display: flex;
    align-items: center;
    gap: 10px;
}

.tz-card-title::before {
    /* content: 'âš™ï¸'; */
    font-size: 28px;
}


.tz-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #334155;
    margin: 20px 0 10px;
}

.tz-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #eef2ff;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.tz-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
    border-top: 1px dashed #cbd5e1;
    padding-top: 21px;
}

.tz-row:last-child {
    margin-bottom: 0;
}

.tz-row-small {
    margin-bottom: 24px;
}

.tz-row-small-last {
    margin-bottom: 0;
}

.tz-row-line {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.tz-row-line:last-child {
    border-bottom: none;
}


.tz-label {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 6px;
    display: block;
}

.tz-label-strong {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
}

.tz-label-top {
    font-size: 13px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tz-label-selector {
    margin-bottom: 15px;
}

.tz-label-main {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.tz-input {
    width: 100%;
    padding: 14px 18px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.3s ease;
    outline: none;
}

.tz-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.tz-input:hover {
    border-color: #94a3b8;
}

.tz-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.tz-input-wrapper::after {
    content: attr(data-text);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
}

.tz-input-wrapper-small::after {
    padding: 2px 8px;
    font-size: 12px;
}

.tz-input-wrapper-additionally {
    width: 120px;
}

.tz-input-wrapper-additionally::before {
    /* content: attr(data-label); */
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    color: #475569;
    font-size: 14px;
    white-space: nowrap;
}

.tz-radio-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 50px;
}

.tz-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tz-radio-label {
    padding: 8px 20px;
    background: transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.tz-radio:checked + .tz-radio-label {
    background: white;
    color: #0040ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tz-radio:disabled + .tz-radio-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.tz-selector-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 5px;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 40px;
}

.tz-selector-wrapper-only {
    margin-bottom: 0;
}

.tz-selector {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tz-radio:checked + .tz-selector {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.tz-second-selectors {
    /* margin-top: 15px; */
    padding-top: 15px;
    border-top: 1px dashed #cbd5e1;
}

.tz-second-selectors::before {
    content: attr(data-label);
    display: block;
    font-size: 13px;
    color: black;
    margin-bottom: 10px;
    font-weight: 600;
}

.tz-table-head {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border-bottom: 2px solid #cbd5e1;
}

.tz-file-area {
    position: relative;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tz-file-area:hover {
    border-color: #3b82f6;
    background: #eef2ff;
}

.tz-file-title {
    font-size: 15px;
    color: #475569;
    margin-bottom: 15px;
}

.tz-file-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.tz-file-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px #3b82f6;
}
.tz-file-area {
    border: 2px dashed #94a3b8;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.tz-file-area:hover,
.tz-file-area.dragover {
    border-color: #1e40af;
    background: #f0f9ff;
}

.tz-file-icon {
    margin-bottom: 16px;
    color: #64748b;
}

.tz-file-title {
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 8px;
}

.tz-file-subtitle {
    font-size: 14px;
    color: #64748b;
}

.tz-file-button {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tz-file-button:hover {
    background: #1e3a8a;
    transform: translateY(-1px);
}

.tz-file-hint {
    font-size: 13px;
    color: #64748b;
    margin-top: 12px;
    line-height: 1.4;
}

.selected-files-list {
    margin-top: 12px;
}

.selected-files-list .file-item {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 14px;
}

.selected-files-list .file-item span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selected-files-list .remove-file {
    color: #ef4444;
    cursor: pointer;
    font-weight: bold;
    padding: 0 6px;
}
.tz-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tz-file-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    pointer-events: none;
}

.tz-textarea {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    font-size: 15px;
    color: #0f172a;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    outline: none;
}

.tz-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.tz-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
    width: 100%;
    max-width: 300px;
}

.tz-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(59, 130, 246, 0.6);
}

.tz-submit-btn:active {
    transform: translateY(0);
}

.tz-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.tz-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.tz-col-3 {width: 25%;padding: 0 15px;}
.tz-col-4 { width: 33.333%; padding: 0 15px; }
.tz-col-5 {width: 41.666%;/* padding: 0 15px; */}
.tz-col-6 { width: 50%; padding: 0 15px; }
.tz-col-7 {width: 58.333%;/* padding: 0 15px; */}
.tz-col-8 { width: 66.666%; padding: 0 15px; }
.tz-col-9 {width: 75%;/* padding: 0 15px; */}
.tz-col-10 { width: 83.333%; padding: 0 15px; }
.tz-col-12 { width: 100%; padding: 0 15px; }
.mw .tz-d-flex{
    justify-content: unset;
}
.mw .tz-align-content-end{
    align-content: unset;
    flex-direction: column;
}
.tz-d-flex {display: flex;justify-content: end;}
.tz-flex-wrap {flex-wrap: wrap;/* width: auto; */}
.tz-align-items-center { align-items: center; }
.tz-align-items-start { align-items: flex-start; }
.tz-align-content-between { align-content: space-between; }
.tz-align-content-end { align-content: flex-end; }
.tz-justify-content-end {/* justify-content: flex-end; */}
.tz-mt-2 {margin-top: 14px;}
.tz-mt-3 { margin-top: 16px; }
.tz-mb-4 { margin-bottom: 30px; }
.tz-mb-3 { margin-bottom: 20px; }
.tz-bottom .tz-col-5,.tz-bottom .tz-col-7{
    width: 100%;
}
@media (max-width: 992px) {
    .tz-col-md-3 { width: 100%; }
    .tz-col-md-4 { width: 33.333%; }
    .tz-col-md-5 { width: 41.666%; }
    .tz-col-md-6 { width: 50%; }
    .tz-col-md-7 { width: 58.333%; }
    .tz-col-md-8 { width: 66.666%; }
    .tz-col-md-9 { width: 100%; }
    .tz-col-md-10 { width: 83.333%; }
    .tz-col-md-12 { width: 100%; }
    .tz-table-head,.tz-mw{
        display: none;
    }
    .tz-col-9,.tz-d-flex,.tz-col-6,.tz-input-wrapper-additionally{
        width: 100%;
    }
    .tz-row{
        gap: 8px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

@media (max-width: 768px) {
    .tz-col-6,.tz-col-4,.tz-col-3{
        padding: 0;
    }
    .tz-col-md-7{
        width: 100%;
    }
    .tz-content {
        border-radius: 24px;
    }

    .tz-title {
        /* font-size: 28px; */
        padding: 80px 0 20px;
    }

    .tz-title::after {
        /* left: 20px; */
    }

    .tz-form {
        /* padding: 0 20px 30px; */
    }

    .tz-card {
        padding: 20px;
    }

    .tz-card-title {
        /* font-size: 20px; */
    }

    .tz-col-sm-6 { width: 50%; }
    .tz-col-sm-12 { width: 100%; }

    .tz-radio-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }

    .tz-input-wrapper-additionally::before {
        position: static;
        margin-bottom: 5px;
        transform: none;
    }

    .tz-bottom {
        flex-direction: column;
    }

    .tz-submit-btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .tz-col-6 {
        width: 100%;
    }

    .tz-selector-wrapper {
        flex-direction: column;
        padding: 0;
    }

    .tz-selector {
        text-align: center;
    }
}

@keyframes tz-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tz-card {
    animation: tz-fadeIn 0.5s ease forwards;
    opacity: 0;
}
.span-mw{
    padding-top: 150px
}
.tz-card:nth-child(1) { animation-delay: 0.1s; }
.tz-card:nth-child(2) { animation-delay: 0.2s; }
.tz-card:nth-child(3) { animation-delay: 0.3s; }
.tz-card:nth-child(4) { animation-delay: 0.4s; }
.tz-card:nth-child(5) { animation-delay: 0.5s; }
.tz-card:nth-child(6) { animation-delay: 0.6s; }
