html {
    font-size: 16px;
    box-sizing: border-box;
}

body {
    margin-bottom: 60px;

.container {
    max-width: 1200px; 
    padding: 0 15px;
}

.form-control {
    -webkit-appearance: menulist;
}

.hidden{
    display:none;
}

input,
select {
    box-sizing: border-box;
}

    input::placeholder {
        color: Grey !important;
        font-size: 16px !important;
        font-weight: normal !important;
    }

.required-asterisk {
    color: red;
    font-weight: bold;
    margin-left: 2px;
}

.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.step.active .dot {
    background-color: #005555;
}

.line {
    width: 50px;
    height: 2px;
    background-color: #ccc;
    margin: 0 10px;
}

.label {
    font-size: 12px;
    color: #333;
    margin-top: 5px;
}

.step-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }

    .form-control {
        width: 100%;
        max-width: 100%;
        padding: 8px;
    }

    th {
        padding: 10px;
        text-align: left;
    }
}

@media (max-width: 767px) {
    table {
        width: 100%;
    }

    tr {
        display: block;
        margin-bottom: 15px;
    }

    th,
    td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }

        td label {
            display: block;
            margin-bottom: 5px;
        }

        td input,
        td select {
            width: 100%;
            max-width: 100%;
            padding: 8px;
            box-sizing: border-box;
        }
    .line {
        width: 30px;
    }

    .dot {
        width: 15px;
        height: 15px;
    }

    .label {
        font-size: 10px;
        text-align:center;
    }

    .step-text {
        font-size: 12px;
    }
}

.btn {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    margin: 10px 5px;
    display: block;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .text-center .btn {
        width: 150px;
        display: inline-block;
    }
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: bold;
}