.login-container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around !important;
    /* margin-top: 100px; */
    /* padding: 100px 0px; */
    padding: 50px 0px 100px 0px;
}

.left-panel {
    /* background: url(assets/img/login-bg.png); */
    /* background: url("../assets/img/login-bg.png"); */
    background: url('../img/login-bg.png');
    background-repeat: no-repeat;
    width: 45% !important;
    background-size: cover;
    padding-right: 20px;
}

.left-panel-text {
    padding: 20px;
}

.left-panel h2 {
    color: #FFF;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.left-panel h6 {
    color: var(--light-grey, #F7F7F7);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px !important;
}

.right-panel {
    padding: 10px;
    width: 50% !important;
}

/* .right-panel img {
    width: 20%;
} */

.right-panel h2 {
    color: var(--blackColor, #030202);
    font-family: Roboto;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 25px !important;
}

.right-panel p {
    color: var(--grey, #807A79);
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.right-panel label {
    color: var(--blackColor, #030202);
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 3px;
}

.right-panel input {
    border-radius: 10px;
    border: 1px solid rgba(172, 168, 166, 0.20);
    background: var(--light-grey, #F7F7F7);
    padding: 10px 0px 10px 10px;
}

.right-panel input::placeholder {
    color: var(--grey, #807A79);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.right-panel .forget-pass {
    color: var(--blackColor, #030202);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

/* .btn-login {
    color: var(--blackColor, #030202);
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    border-radius: 10px;
    background: linear-gradient(91deg, #FFC77D 0.48%, #F67C1E 81.23%, #FF6F00 98.37%);
    box-shadow: 0px 2px 8px 2px rgba(226, 137, 21, 0.25), 0px 10px 40px -4px rgba(16, 24, 40, 0.02), 0px 8px 8px -4px rgba(16, 24, 40, 0.02);
} */

.btn-login {
    color: var(--blackColor, #030202) !important;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    border-radius: 10px;
    border: 1px solid #FFC77D !important;
    background: linear-gradient(91deg, #FFC77D 0.48%, #F67C1E 81.23%, #FF6F00 98.37%) !important;
    box-shadow: 0px 2px 8px 2px rgba(226, 137, 21, 0.25), 
                0px 10px 40px -4px rgba(16, 24, 40, 0.02), 
                0px 8px 8px -4px rgba(16, 24, 40, 0.02);
    transition: color 0.3s ease;
    text-decoration: none !important; /* remove underline if any */
}

.btn-login:hover {
    background: #FF6F00 !important;
    border-radius: 10px; /* keep same shape on hover */
    color: #fff !important;
}



.right-panel .do-not-have-acct {
    color: var(--grey, #807A79);
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.right-panel .do-not-have-acct .sign-up-btn {
    color: var(--blackColor, #030202);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .login-box {
        flex-direction: column;
    }

    .left-panel {
        width: 100% !important;
    }

    .right-panel {
        width: 100% !important;
    }

    .login-box {
        margin-top: 20px;
    }
}