
.rn-page-container {
    padding: 15px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.rn-page-footer {
    background: #4e61ed;
    padding: 15px 35px;
    margin: auto -35px -15px;
}
.rn-page-content {
    flex: 1;
    overflow-y: auto;
    margin: 15px 0;
}
.rn-page-header {
    display: flex;
    gap: 15px;
    align-items: center;
}
.rn-page-header h2 {
    font-size: 2em;
    font-weight: 500;
    color: #555555;
}

.rn_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .2em;
    padding: 6px 12px;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 0%);
}
.rn_btn svg {
    width: 1.2em;
    height: 1.2em;
}
.rn_btn:hover {
    box-shadow: 0px 3px 5px rgb(0 0 0 / 15%);
}
button.rn_btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.rn_btn.rn_btn--default{
    border: 1px solid #555555;
    background-color: #fff;
    color: #555555;
}
.rn_btn.rn_btn--primary{
    border: 1px solid #4e61ed;
    background-color: #4e61ed;
    color: #fff;
}
.rn_btn.rn_btn--primaryoutline{
    border: 1px solid #4e61ed;
    background-color: #fff;
    color: #4e61ed;
}

.rn-page-section {
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 30px;
}

.rn-page-section-header{
    margin-bottom: 15px;
}
.rn-page-section-header .rn_svg_icon{
    width: 1.15em;
    height: 1.15em;
    color: #455dcf;
}
.rn-page-section-header h3{
    font-size: 1.5em;
    font-weight: 500;
    color: #555555;
    display: flex;
    align-items: center;
    gap: .25em;
}
.rn-page-section-content p:not(:last-child){
    margin-bottom: .75em;
}


.rn-fieldset .rn-form-field:not(:last-child){
    margin-bottom: 15px;
}
.rn-form-field input[type="checkbox"],
.rn-form-field input[type="radio"]
{
    vertical-align: middle;
}
.rn-form-field label
{
    font-weight: 500;
    cursor: pointer;
}
.rn-form-field .note
{
    opacity: .65;
}

.rn-fieldset-action{
    margin-top: 15px;
}