@color1: #0a56a3;
@color2: #278a56;
@color3: #FEC34D;

html, body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.login-box {
    border-radius: 30px;
    box-shadow: 0 0 20px #474747;
}

.login-box .login-box-body {
    border-radius: 30px !important
}

.container-fluid.login-box {
    border-radius: 0
}

.bg-primary {
    padding: 10px;
    background-color: #b73351a6;
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 1
}

.pLine {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    width: 550px;
    margin: 0 auto;
    line-height: 1.3;

    span {
        color: @color3
    }
}

.leftInfo {
    width: 100%;
    height: 100vh;
    position: relative;
    text-align: center;

    .tarea {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;

        img {
            margin-top: 7%;
        }
    }
}

.outerBx {
    width: 100%;
    height: 100vh;
    position: relative;
    text-align: center;
}

.icLogo {
    width: 230px
}

.rightInfo {
    padding: 3% 9% 4%;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 20px #474747;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;

    h2 {
        font-size: 28px;
        color: #03014C;
        font-weight: 600;
        text-align: left;
    }

    h5 {
        font-size: 16px;
        color: #03014C;
        text-align: left;
    }

    .credP {
        margin-top: 0px;



        .flinks {
            font-size: 13px;
            color: #005AAA;
            display: inline-block;
            margin-top: 5px;
            text-decoration: none;
            font-weight: 500;
            float: right;
            outline: none;
        }

        .orL {
            font-size: 13px;
            color: #03014C;
            margin: 15px 0;
            position: relative;

            &:before {
                content: '';
                width: 44%;
                height: 1px;
                background: #cfcfcf;
                position: absolute;
                left: 0;
                top: 10px;
            }

            &:after {
                content: '';
                width: 44%;
                height: 1px;
                background: #cfcfcf;
                position: absolute;
                right: 0;
                top: 10px;
            }
        }

        .otherL {
            display: flex;
            justify-content: space-between;

            .btnH {
                font-size: 14px;
                border: none;
                border: 1px solid #ccc;
                background: #fff;
                color: #03014C;
                font-weight: 500;
                padding: 6px 0;
                border-radius: 10px;
                width: 48%;
                transition: all .5s ease-in-out;

                img {
                    margin-right: 5px;
                    position: relative;
                    top: -1px;
                }

                &:hover {
                    background: #0a56a3;
                    color: #fff;
                }
            }

            .tryB {
                padding: 6px 8px 2px;
                width: 210px;
                text-align: left;
                margin-top: 15px;
                margin-bottom: 138px;
                border: none;
                color: @color1;
                transition: all .5s ease-in-out;

                &:hover {
                    background: transparent;
                    color: @color1;

                    i {
                        position: relative;
                        right: 7px;
                    }
                }
            }
        }

        .otherL1 {
            margin-top: 30px;

            .aiCpa {
                width: 50px;
                margin-right: 10px
            }

            .xbrlC {
                width: 142px
            }
        }
    }
}

.btnD {
    width: 100%;
    font-size: 16px;
    color: #000;
    background: @color3;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 0;
    margin-top: 50px;

    i {
        margin-right: 10px
    }

    &:hover {
        i {
            margin-right: 3px;
            transition: 0.5s;
        }
    }
}

.inG {
    text-align: left;
    padding-top: 25px;
    position: relative;

    label {
        display: block;
        font-size: 14px;
        color: @color1;
        font-weight: 600;
        margin-bottom: 0;

        &.has-error {
            color: red;
            position: absolute;
            font-size: 13px;
            font-weight: 500;
            line-height: 14px;
            background: #f3f3f3;
            z-index: 1;
            padding: 5px;
            width: 100%;
            text-align: left
        }
    }

    span {
        position: absolute;
        right: 10px;
        color: #adadad;
        font-size: 16px;

        .fa-eye, .fa-eye-slash {
            cursor: pointer
        }
    }

    input {
        font-size: 16px;
        color: #03014C;
        border: none;
        border-bottom: 1px solid #adadad;
        outline: none;
        width: 100%
    }

    input[type="password"] {
        font: large Verdana, sans-serif;
        letter-spacing: 1px;
    }
}

.login-logo {
    margin-bottom: 0
}

.login-box-msg {
    padding: 0;
    font-weight: bold
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    font-size: 16px !important
}

.ErrMsg, .inG .ErrMsg {
    clear: both;
    color: red;
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    padding-top: 12px;
    left: 0;
    right: 0;
}

input::placeholder {
    font-weight: bold;
    opacity: 0.5;
    color: #ccc;
    font-size: 16px
}

input[readonly] {
    background: #fafafa;
}

.spadd {
    padding-left: 0;
    padding-right: 0;
}

a, a:hover, a:focus, button {
    cursor: pointer;
    text-decoration: none
}

input::-ms-reveal,
input::-ms-clear {
    display: none !important;
}

::-ms-reveal {
    display: none !important;
}

::placeholder {
    font-family: "Open Sans", sans-serif;
}

@media (max-width: 1279px) {
    .rightInfo .credP .otherL .btnH {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .rightInfo .credP .otherL .btnH:nth-of-type(1) {
        margin-bottom: 10px
    }

    .rightInfo .credP .otherL {
        display: block
    }

    .leftInfo .tarea .pLine {
        font-size: 24px
    }
}

@media (min-width: 1280px) and (max-width: 1300px) {
    .rightInfo {
        padding: 3% 6% 4%;
    }
}

@media (max-width: 991px) {
    .rightInfo {
        top: 42%;
        width: 65%
    }

    .pLine {
        font-size: 22px;
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 12%;
    }
}

@media (max-width: 767px) {
    .rightInfo {
        width: 85%
    }

    .pLine {
        font-size: 18px;
    }

    .pinConfirmBox, .login-box {
        width: 95% !important
    }

    .container-fluid.login-box {
        width: 100% !important
    }

    .btnD.btn-default {
        margin-top: 10px
    }

    .dialog-main .dialog-content {
        width: 95% !important
    }

    .textH {
        line-height: 18px
    }
}
