/* ... Style CSS ... */
:root {
    --primary-color: #0d6efd;
    --primary-dark: #2d6b9c;
    --primary-light: #5ca3e0;
    --secondary-color: #6c757d;
    --light-bg: #f8f9fa;
    --24-name: #cc4242;
    --gradient-bg: linear-gradient(135deg, #f9f9fb 0%, #f3f6fb 100%);
}
.formmularz
{
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.step {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #e9ecef;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    color: #6c757d;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}
.step.active {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}
.step.finished {
    background-color: var(--primary-light);
    color: white;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e9ecef;
    transform: translateY(-50%) translateY(16px);
    z-index: 1;
}
.step-indicator::before {
    top: 20px;
    transform: none;
}

/* przyciski*/

.przyciks-dalej {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(61, 140, 201, 0.15);
}
.przyciks-dalej:hover {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 6px 18px rgba(61, 140, 201, 0.25);
    transform: translateY(-1px);
}

.przystiks-wstecz {
    margin-right: 10px;
    background: white;
    border: 1px solid gray;
    color: gray;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(61, 140, 201, 0.15);
}
.przystiks-wstecz:hover {
    background: gray;
    color: white;
    box-shadow: 0 6px 18px rgba(61, 140, 201, 0.25);
    transform: translateY(-1px);
}
.przystiks-wyslij {
    margin-right: 10px;
    background: white;
    border: 1px solid green;
    color: green;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(61, 140, 201, 0.15);
}
.przystiks-wyslij:hover {
    background: green;
    color: white;
    box-shadow: 0 6px 18px rgba(61, 140, 201, 0.25);
    transform: translateY(-1px);
}
