body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6fa;
}

.left-section {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 25%;
    padding: 30px 20px;
    background: url('../img/bg-img-default.png'), linear-gradient(185deg, #2B3FAE, rgba(43, 113, 174, 0.7));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    z-index: 1;
    border-radius: 10px 0 0 0;
}

    .left-section img {
        max-height: 140px;
    }

.right-section {
    margin-left: 25%;
    padding: 30px;
}

.form-wrapper {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.step-wizard {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 20px;
    overflow-x: auto;
    gap: 10px;
}

.step {
    flex-grow: 1;
    text-align: center;
    color: #6c757d;
    min-width: 120px;
}

    .step.active {
        color: #0d6efd;
        font-weight: bold;
    }

    .step i {
        display: block;
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

.card-header {
    background-color: #0d6efd;
    color: #fff;
    font-weight: 600;
}

label span {
    color: red;
}

.file-note {
    font-size: 0.8rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .left-section {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 0;
        padding: 20px;
        text-align: center;
    }

    .right-section {
        margin-left: 0;
        padding: 20px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .form-control, .form-select {
        font-size: 0.9rem;
    }
}

