
body {
    font-size: 18px;
    position: relative;
    margin: 0;
    padding: 0;
}

    body::after {
        content: "";
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20px;
        background-image: url(../../images/login_bg/bg_1.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
        opacity: 1;
    }

    body::before {
        content: "";
        position: fixed;
        bottom: 10px;
        right: 0;
        width: 600px;
        height: 287px;
        background-image: url(../../images/login_bg/bg_2.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
        opacity: 1;
    }

.loginBox {
    background-color: rgba(255, 255, 255, 1);
    margin-top: 53%;
}

    .loginBox .input-group-addon {
        font-weight: 400;
        color: #fff;
        text-align: center;
        background-color: #F2A356;
        border: unset;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.login__title {
    background: #1C4182;
    margin: -5px;
    padding: 10px 15px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    margin-top: -10px;
    text-align: center;
}

.login__img {
    width: 56%;
}

.login__input {
    width: 56%;
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
    border: 1px solid #ccc;
    /* background-color: #e8f0fe; */
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    font-size: 15px;
}

    .login__input:focus {
        border-color: #F2A356;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px #F2A35699;
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px #F2A35699;
    }

.login__VerificationCode {
    width: 28%;
}

.btn-info {
    color: #fff;
    background-color: #F2A356;
    border-color: #F2A356;
}

    .btn-info:hover {
        color: #fff;
        background-color: #F2A356;
        border-color: #F2A356;
    }

    .btn-info:active:hover,
    .btn-info:active:focus {
        color: #fff;
        background-color: #F2A356;
        border-color: #F2A356;
    }

    .btn-info.focus,
    .btn-info:focus {
        color: #fff;
        background-color: #F2A356;
        border-color: #F2A356;
    }


.wrap {
    background-color: #ffffff;
    padding: 30px;
    border-top: 10px solid #1C4182;
    box-shadow: 8px 11px 15px rgb(0 0 0 / 25%);
    border-radius: 10px;
    margin-top: 10%;
}

    .wrap .wrap-flex {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .wrap .ul-style-clear {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
    }

    .wrap li {
        background: rgba(205, 205, 205, 0.3);
        border-radius: 6px;
        padding: 10px 24px 10px;
        margin-bottom: 16px;
        position: relative;
        cursor: pointer;
    }

        .wrap li:last-child {
            margin-bottom: 0;
        }

        .wrap li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            height: 100%;
            background-color: #CDCDCD;
            border-radius: 4px;
        }

        .wrap li:hover::before {
            background-color: #1C4182;
        }

        .wrap li:hover .c a {
            color: #1C4182;
        }

    .wrap .d {
        margin-right: 60px;
    }

        .wrap .d small {
            font-size: 15px;
            color: #1F1F1F;
        }

        .wrap .d p {
            font-size: 29px;
            color: #1C4182;
        }

    .wrap .c {
        overflow: hidden;
    }

        .wrap .c a {
            display: block;
            text-decoration: none;
            font-size: 22px;
            color: #1F1F1F;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }

            .wrap .c a:hover {
                font-weight: 700;
            }

        .wrap .c small {
            display: block;
            font-size: 16px;
            color: #606060;
            letter-spacing: 0.5px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }

.modal h4 {
    margin-bottom: 0;
    font-size: 22px;
    text-align: left;
    line-height: 1.5;
}

.modal .badge {
    background-color: #ececec;
    border-radius: 2px;
    color: #2a2a2a;
    font-size: 16px;
}

.modal .info-time {
    margin-bottom: 10px;
}

.modal p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.modal .modal-footer {
    padding: 0;
}

    .modal .modal-footer button {
        padding: 16px;
        margin-top: 0;
        border-radius: 0;
        width: 50%;
        float: left;
    }

.modal .modal-header {
    padding: 25px 25px 16px;
}

.modal .modal-body {
    padding: 25px;
}


.modal-dialog-centered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (.5rem * 2))
}

.modal-backdrop.in {
    opacity: .7;
}

@media (max-width: 767.98px) {
    .wrap .d, .wrap .c {
        width: 100%;
    }

    .wrap .d {
        margin-right: 0;
    }

        .wrap .d p {
            font-size: 22px;
        }

    .wrap .c a {
        margin-bottom: 4px;
    }
}

@media (min-width:576px) {
    .modal-dialog-centered {
        min-height: calc(100% - (18rem * 2));
    }
}
