﻿form, .pseudo-form {
    text-align: justify;
    position: relative;
}

    form .form-group, .pseudo-form .form-group {
        margin-bottom: 10px;
        text-align: justify;
    }

    /*form .fake-input {
        pointer-events: none;
        margin-bottom: 10px;
        text-align: left;
    }
        */
    form .action-button {
        width: 100px;
        background: var(--main-black);
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 0px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 10px 10px 5px;
        float: right
    }

        form .action-button:hover {
            background-color: #000711
        }

        form .action-button:disabled {
            cursor: not-allowed;
            background-color: var(--disable-gray);
            color: var(--disable-text-gray);
            border-color: var(--disable-border-gray);
        }

    form .action-button-previous {
        min-width: 100px;
        width: fit-content;
        background: #616161;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 0px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px 10px 5px;
        float: right
    }

        form .action-button-previous:hover {
            background-color: #000000
        }

.code_group {
    text-align: center;
    padding: 2rem;
}

    .code_group .form-control {
        border: 0;
        border-bottom: 1px solid #a1a7ac;
        border-radius: 0;
        display: inline-block;
        width: 30px;
        font-size: 30px;
        color: #5f6771;
        padding: 0;
        margin-right: 7px;
        text-align: center;
        line-height: 1;
    }

        .code_group .form-control.error-field {
            border-color: #B94A48;
        }

        .code_group .form-control:disabled {
            background-color: var(--disable-gray);
            border-bottom: 1px solid var(--disable-border-gray);
        }

#msform {
    text-align: center;
    margin-top: 20px;
}

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        position: relative;
    }

        #msform fieldset:not(:first-of-type) {
            display: none;
        }

    #msform input.error-field {
        border-color: #B94A48;
    }

    #msform ul {
        padding: 0px;
        font-size: 12px;
    }

    #msform .certificate-text {
        font-size: 12px
    }

    #msform .text-danger {
        margin: 2px 0 3px;
        padding: 0;
        font-size: 0.9em;
        line-height: 0.9em;
    }

.form-card {
    width: 100%;
    padding: 15px;
    margin: auto;
    text-align: center;
}

    .form-card .checkbox {
        font-weight: 400;
    }

    .form-card .form-floating:focus-within {
        z-index: 2;
    }

form .card {
    z-index: 0;
    position: relative;
    margin: 10px;
}

.fs-title {
    font-size: 25px;
    color: var(--main-black);
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 15px;
    overflow: hidden;
    color: lightgrey
}

    #progressbar .active {
        color: var(--main-black);
    }

    #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 25%;
        float: left;
        position: relative;
        font-weight: 400;
    }

    #progressbar #confirm:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f00c";
    }

    #progressbar #key:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f084";
    }

    #progressbar li:before {
        position: relative;
        z-index: 1;
        display: block;
        width: 50px;
        height: 50px;
        line-height: 45px;
        font-size: 20px;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px;
    }

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
        background: var(--main-black);
    }

.progress-custom {
    height: 20px;
    border-radius: 0rem;
}

.progress-bar {
    background-color: var(--main-black)
}