.role {
    box-sizing: border-box;
    max-width: 36rem;
    margin: 0 auto;
    border: 1px solid #cccccc;
    border-radius: 1rem;
}

.titleRow {
    box-sizing: border-box;
    padding: 1.25rem;
    border-bottom: 1px solid #eeeeef;
}

.titleForm {
    box-sizing: border-box;
    margin: 0;
    color: #313f4c;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.25rem;
    line-height: 1.625;
    font-weight: bolder;
}

.formContent {
    box-sizing: border-box;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.formContentFields {
    box-sizing: border-box;
    display: flex;
    margin-bottom: 2rem;
}

.formContentFieldsSection {
    box-sizing: border-box;
    display: block;
    flex: 1 1 auto;
}

.labelPlaceholder {
    box-sizing: border-box;
    margin: 0;
    color: #313f4c;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    line-height: 1.425;
    display: none;
}

.inputText100 {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding-right: 42px;
    padding-bottom: 0.75rem;
    background: #ffffff;
    border: 1px solid #cfdce8;
    border-radius: 0.375rem;
    color: #5c7994;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;

}

.inputText50 {
    box-sizing: border-box;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.inputText50Content {
    box-sizing: border-box;
    display: block;
    flex: 1 1 auto;
}

.inputText50Content input,
.inputText50Content select {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 0.625rem 0.75rem;
    background: #ffffff;
    border: 1px solid #cfdce8;
    border-radius: 0.375rem;
    color: #5c7994;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    line-height: 1.625;
}

.checkboxContent {
    box-sizing: border-box;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.checkboxContentList {
    box-sizing: border-box;
    display: flex;
    gap: 2rem;
}

.checkboxContentListItem {
    box-sizing: border-box;
    display: block;
    flex: 1 1 auto;
}

.checkboxContentListItem label {
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.checkBox {
    box-sizing: border-box;
    display: block;
    flex: 0 0 auto;
    width: 1.25rem;
    height: 1.25rem;
    border: 1.62px solid #CFDCE8;
    border-radius: .25rem;
}

.checkboxContentListItem label span {
    box-sizing: border-box;
    display: block;
    margin-left: 0.625rem;
    color: #313f4c;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    line-height: 1.625;
    font-weight: 500;
    font-weight: bold;
}

.inputButtonContent {
    box-sizing: border-box;
    padding: 1.25rem;
    border-top: 1px solid #eeeeef;
    text-align: right;
}

.inputButton {
    box-sizing: border-box;
    display: inline-block;
    padding: .625rem 1rem;
    background-color: #00A7E7;
    border: 0;
    border-radius: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    line-height: 1.625;
    font-weight: 500;
}

@media only screen and (max-width: 374px) {
    .formContent {
        box-sizing: border-box;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        max-width: 374px;
    }

    .inputText50 {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .inputText50Content {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
    }

    .inputText50Content input {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0.625rem 0.75rem;
        background: #ffffff;
        border: 1px solid #cfdce8;
        border-radius: 0.375rem;
        color: #5c7994;
        font-family: 'Titillium Web', sans-serif;
        font-size: 1rem;
        line-height: 1.625;
    }

    .checkBox {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        flex: 0 0 auto;
        width: 1.25rem;
        height: 1.25rem;
        border: 1.62px solid #CFDCE8;
        border-radius: .25rem;
    }

    .checkboxContent,
    .checkboxContentList {
        display: block;
    }
    .checkboxContentListItem {
        margin-bottom: 2rem;
    }

    .span {
        font-size: 13px !important;
    }

    .checkBox {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        flex: 0 0 auto;
        width: 1.25rem;
        height: 1.25rem;
        border: 1.62px solid #CFDCE8;
        border-radius: .25rem;
    }

}