.content {
    height: 100vh;
    overflow: hidden;
}

.left-side {
    background: rgb(14,34,105);
    background: linear-gradient(180deg, rgba(14,34,105,1) 0%, rgba(31,160,254,1) 100%);
}

/* 
    This pseudo-element is used to make the image transparent 
    without affecting the background gradient color 
*/
.left-side::before {    
    content: "";
    background-image: url("../sidebar-bg.jpg");
    background-position: 55% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.2;
}

.right-side {
    transform: translateY(22%);
}

.right-content {
    max-width: 620px;
}

.logo {
    height: 54px;
}

input, select, textarea{
    color: black !important;
}

#displayNewPassword, #displayConfirmPassword {
    cursor: pointer;
}

label {
    font-size: 18px;
}

.btn {
    background-color: #296CBA;
    font-weight: 500;
    color: white;
}

/* Tooltip container */
.custom-tooltip {
    position: relative;
}

/* Tooltip text */
.tooltip-text {
    display: inline-block;
    visibility: hidden;
    min-width: 300px;
    background-color: #fff;
    color: #000;
    text-align: left;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    top: -66px;
    left: 113%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;

    /* Shadow */
    -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.30);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.30);
    box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.30);
}

.tooltip-text ul {
    list-style-type: none;
    padding: 8px;
    margin: 0;
}

.tooltip-text ul li {
    margin-bottom: 4px;
    margin-left: 8px;
    opacity: 0.9;
}

.tooltip-text ul li i {
    margin-right: 5px;
}

.valid {
    color: green;
}

/* Tooltip arrow */
.tooltip-text::before {
    z-index: 0;
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.tooltip-input:focus + .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.error {
    color: red;
    display: none;
}

.display-error {
    display: block;
}

.icon-top-margin {
    margin-top: 5px;
}

@media only screen and (max-height: 800px) {
    /* Keep left side content vertically aligned depending of screen height */
    .right-side {
        transform: translateY(0%);
        padding-top: 100px;
    }

    .content {
        overflow: inherit;
    }
}

@media only screen and (max-width: 1500px) {
    .right-side {
        transform: translateY(22%);
    }

    .tooltip-text {
        top: -186px;
        left: 36%;
        margin-left: -60px;
    }

    .tooltip-text::before {
        top: 102%;
        right: 50%;
        border-color: #fff transparent transparent transparent;
    }
}