html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #35408f;
    /* background: #f8f9fd; */
}

body {
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    color: #35408f;
}

.container-table {
    display: table;
    height: 95%;
}

.vertical-center-row {
    display: table-cell;
    vertical-align: middle;
}

.container-center {
    background: #ffd41c;
    box-shadow: 1px 1px 30px 5px rgba(0, 0, 0, 0.35);
    margin-top: 30px;
}

.container-row {
    display: flex;
    flex-direction: row;
}

.board-1 {
    padding: 60px 0;
    width: 50%;
}

img#logo-nu {
    height: 100px;
    margin: auto;
}

img#logo-paynamics {
    box-shadow: 1px 1px 30px 5px rgba(0, 0, 0, 0.35);
    height: 60px;
    margin: auto;
}

.board-2 {
    padding: 30px 50px;
    background: #fff;
    width: 50%;
}

.board-2 p.lead {
    font-size: 22px;
}

.board-2 .alert {
    padding: 10px;
    font-size: 85%;
}

.board-2 .input-group {
    padding-bottom: 10px;
}

.board-2 .btn-info-tip {
    background: #fff;
    cursor: pointer;
}

.pop-content {
    color: #555;
}

.pop-content ul {
    padding-inline-start: 10px;
}

.project-title {
    text-align: center;
    color: #35408f;
    font-size: 32px;
    font-weight: bold;
}

.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: black;
    text-align: center;
    height: 1.5em;
    opacity: .5;
}

.hr-text:before {
    content: '';
    background: linear-gradient(to right, transparent, #818078, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.hr-text:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;
    padding: 0 .5em;
    line-height: 1.5em;
    color: #818078;
    background-color: #fcfcfa;
}

@media (max-width: 768px) {

    html,
    body {
        background: #FFD41C;
    }

    .container-table {
        width: 100%;
    }

    .container-center {
        box-shadow: none;
        margin-top: 0;
    }

    .container-row {
        flex-direction: column;
    }

    .board-1,
    .board-2 {
        width: 100%;
    }

    .board-1 {
        padding-bottom: 20px;
    }

    .board-2 {
        padding: 20px;
        background: #FFD41C;
        padding-top: 0;
    }
}