
    /* Extra small devices (phones, 600px and down) */
    @media only screen and (max-width: 600px) {
        .bggl {

            background-image: linear-gradient(to bottom, #c5e0ff 40%, white 60%);
        }


    }

    /* Small devices (portrait tablets and large phones, 600px and up) */
    @media only screen and (min-width: 600px) {
        .bggl {
            background-image: linear-gradient(to bottom, #c5e0ff 40%, white 60%);
        }
    }

    /* Medium devices (landscape tablets, 768px and up) */
    @media only screen and (min-width: 768px) {
        .bggl {
            background-image: linear-gradient(to bottom, #c5e0ff 40%, white 60%);

        }
    }

    /* Large devices (laptops/desktops, 992px and up) */
    @media only screen and (min-width: 992px) {
        .bggl {
            background-image: url(../../dc/img/banner-1.png), linear-gradient(to right, #c5e0ff 40%, white 60%) !important;
            background-position: left top;
            background-repeat: no-repeat;
        }
    }

    /* Extra large devices (large laptops and desktops, 1200px and up) */
    @media only screen and (min-width: 1200px) {
        .bggl {
            background-image: url(../../dc/img/banner-1.png), linear-gradient(to right, #c5e0ff 40%, white 60%) !important;
            background-position: left top;
            background-repeat: no-repeat;


        }

    }

    .divider:after,
    .divider:before {
        content: "";
        flex: 1;
        height: 1px;
        background: #eee;
    }

    .h-custom {
        height: calc(100% - 73px);
    }

    .input-container {
        position: relative;

    }

    input {

        height: 48px;
        width: 100%;
        border: 1px solid #31557d;
        border-radius: 4px;
        box-sizing: border-box;
        padding: 16px;
    }

    .label {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 16px;
        display: flex;
        align-items: center;
        pointer-events: none;
    }

    input,
    .label .text {
        font-family: 'Segoe UI';
        font-size: 16px;
    }

    .label .text {
        transition: all 0.15s ease-out;
        color: #31557d;
    }

    input:focus {
        outline: none;
        border: 2px solid #31557d;
    }

    input:focus+.label .text,
    :not(input[value=""])+.label .text {
        font-size: 12px;
        transform: translate(0, -150%);
        background-color: white;
        padding-left: 4px;
        padding-right: 4px;
    }
	 input +.label .text,
    :not(input[value=""])+.label .text {
        font-size: 12px;
        transform: translate(0, -150%);
        background-color: white;
        padding-left: 4px;
        padding-right: 4px;
    }

    input:focus+.label .text {
        color: #31557d;
    }



    .login_button {
        border-radius: 4px;
        background-color: #31557d;
        border: none;
        color: #FFFFFF;

        font-size: 20px;

        width: 100%;
        height: 48px;
        transition: all 0.5s;
        cursor: pointer;

    }

    .login_button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

    .login_button span:after {
        content: '\00bb';
        position: absolute;
        opacity: 0;
        top: 0;
        right: -20px;
        transition: 0.5s;
    }

    .login_button:active {
        background-color: #495057;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .login_button:hover span {
        padding-right: 25px;


    }

    .login_button:hover span:after {
        opacity: 1;
        right: 0;
    }

    @media (max-width: 450px) {
        .h-custom {
            height: 100%;
        }
    }
