/* Make checkbox check mark black */
input[type="checkbox"],
input[type="radio"] {
    accent-color: black;
}

/* label{
    height: 45px;
    margin-right:10px ;
} */

/* Banner background */
.banner {
    /* Use a web-servable path from public/assets/style.css */
    background-image: url('images/Client_Form_Banner_v2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 435px;
    width: 100%;
    border-radius: 20px;
    margin-top: 20px;
    /* Remove default container padding for the banner */
    padding-left: 0;
    padding-right: 0;
}

.client-form {
    background-color: #f8f9fa;
    /* Light gray background */
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-top: 35px;
    padding-bottom: 45px;
}

/* ===== Progress Bar ===== */
.progress-bar-wrapper {
    margin-bottom: 10px;
}

.step-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid #e0e0e0;
}

.step-label {
    margin-top: 6px;
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
    text-align: center;
    transition: color 0.3s, font-weight 0.3s;
}

.step.active .step-circle {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.step.active .step-label {
    color: #000;
    font-weight: 600;
}

.step.completed .step-circle {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.step.completed .step-label {
    color: #000;
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: #e0e0e0;
    min-width: 30px;
    margin-top: 21px;
    /* vertically center with 42px circles */
    margin-bottom: 27px;
    transition: background-color 0.3s;
}

.step-line.filled {
    background-color: #000;
}

/* ===== Navigation Buttons ===== */
.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* Small hint text displayed under labels */
.hint {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0px;
}

/* Social media input-group label prepend */
.social-label {
    min-width: 130px;
    font-size: 0.9rem;
    gap: 6px;
}