.login-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}
.login-layout-left {
    width: 50%;
    background-color: #fff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: 1;
    position: relative;
}
.left-body-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.login-logo img {
    width: 40%;
    display: block;
    margin: auto;
    padding-bottom: 70px;
}
.login-layout-right {
    width: 50%;
    position: relative;
}
.login-banner {
    position: absolute;
    left: -221px;
    height: 100vh;
    right: -138px;
    top: 0px;
    bottom: 0px;
}
.login-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.login-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(134deg, var(--nexus-blue) 0%, var(--nexus-strong-blue) 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 0.7;
}
.circle {
    width: 30%;
    position: absolute;
    top: -70px;
    left: -100px;
}
.circle_gem {
    width: 5%;
    position: absolute;
    bottom: 40px;
    left: 80px;
}
.circle_gem_right {
    width: 5%;
    position: absolute;
    top: 50px;
    right: 50px;
}
.triangle {
    width: 12%;
    position: absolute;
    bottom: 60px;
    right: -33px;
}

/* style for login.php */
.login {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.login-title {
    color: #000000;
    padding-bottom: 30px;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
}
.agent-login-btn, .admin-login-btn {
    background-color: var(--nexus-strong-blue);
    /* width: 50%; */
    padding: 8px 15px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}
.admin-login-btn{
    background-color: var(--nexus-purple);
}
/* style for Agent Login start */
.agent-login, .agent-login form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-control {
    background-color: #eaecee;
    border: none;
    border-radius: 10px;
    padding: 12px;
}
.btn-blue {
    display: block;
    margin: auto;
    border-radius: 50px;
    border: none;
    color: #fff;
    padding: 8px 30px 10px;
    margin-top: 15px;
}
/* style for Agent Login end */




/* Media Queries */ 
@media screen and (min-width: 0px) and (max-width: 767px) {
    .login-layout {
        flex-direction: column;
    }
    .login-layout-left, .login-layout-right {
        width: 100%;
    }
    .mob-none {
        display: none;
    }
}
@media screen and (min-width: 0px) and (max-width: 1199px) {
    .circle {
        width: 50%;
    }
}