﻿ 
.site-content { 
    height: calc(100vh - 113px)
}

.grey-bg-header {
    background-color: #f3f4f6;
}

.main-bg-color {
    background-color: #C70125;
}

.controls-container {
    height: calc(100vh - 96px);
}

/*menu*/
li > ul {
    transform: translatex(100%) scale(0)
}

li:hover > ul {
    transform: translatex(101%) scale(1)
}

li > button svg {
    transform: rotate(-90deg)
}

li:hover > button svg {
    transform: rotate(-270deg)
}
 
.group:hover .group-hover\:scale-100 {
    transform: scale(1)
}

.group:hover .group-hover\:-rotate-180 {
    transform: rotate(180deg)
}

.scale-0 {
    transform: scale(0)
}

.min-w-32 {
    min-width: 8rem
}

.min-w-24 {
    min-width: 6rem
}


.two-fa-verification-content {
    min-width: 400px;
}

    .two-fa-verification-content .verification-buttons {
        display: flex;
        justify-content: center;
    }

.pin-code-label-content {
    max-width: 325px;
    margin: 0 auto;
    text-align: left;
    margin: 0px auto 15px auto;
}

.password_container {
    max-width: 325px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0px auto 0px auto;
}

.number_input {
    height: 36px;
    width: 36px;
    margin-right: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    border-width: medium;
    border-color: rgba(229, 103, 23, 0.8);
    display: block;
}

.dont-have-app-info {
    margin-bottom: 15px;
}

#sendEmailTwoFACodeButton {
    margin-top: 8px;
    width: auto;
}

/* TwoFaVerifyCode.cshtml styles end */


/* Promo left block styles */

.promo-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 

.promo-container {
    background: linear-gradient(to right, white 55%, #d0e3ee 45%);
 
    overflow: hidden;
    height: calc(100vh - 96px);
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 3vw;
    position: relative;
    z-index: 1;
}

.text-content {
    z-index: 3;
    max-width: 410px;
    flex: 1;
}

    .text-content h1 {
        font-size: 2.1rem;
        font-weight: 700;
        font-family: Poppins;
        color: #122347;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }

    .text-content p {
        font-size: 1.3rem;
        font-weight: 400;
        font-family: Poppins;
        color: #122347;
        line-height: 1.6;
    }

.image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-1%, -50%);
    width: 45%;
    max-width: 800px;
    z-index: 3;
    pointer-events: none;
}

    .image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 25px;
    }

.logo-icon {
    width: 80px;
    height: auto;
    margin-bottom: 1.2rem;
    display: block;
}
.theRightWay-span {
    color: #449ad5;
}

@media (max-width: 1400px) {
    .login-container {
        padding: 0 1vw;
    }

    .image-wrapper {
        transform: translate(8%, -50%);
    }
}

@media (max-width: 1200px) {
    .promo-container {
        background: linear-gradient(to bottom, white 50%, #d0e3ee 50%);
    }

    .login-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 4vh 2vw;
        min-height: 600px
    }

    .text-content {
        font-size: 1.2rem;
        max-width: 90%;
        margin-top: 1rem;
        margin-bottom: 2rem;
        padding-right: 0;
    }

    .image-wrapper {
        width: 80%;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .logo-icon {
        margin: 0 auto 1.2rem;
      
    }

    @media (max-height: 850px) {
        .logo-icon {
          display:none;
        }
    }
}

