﻿<style >
body {
    height: 100vh;
    overflow: hidden;
}

/* Left section */
.left-section {
    background: #c5ecff;
    height: 100vh;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

    .left-section img {
        width: 320px;
        margin-bottom: 20px;
    }

/* Login Box */
.login-box {
    max-width: 380px;
    width: 100%;
}

.form-control-custom {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    padding-left: 0;
}

    .form-control-custom:focus {
        border-bottom: 2px solid #0d6efd;
        box-shadow: none;
    }

.create-box {
    background: #e6f8ff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* Indicator Text */
.indicator-text {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.7;
    font-weight: 500;
}

    .indicator-text span.active {
        opacity: 1;
        font-weight: 700;
        font-size: 18px;
        text-decoration: underline;
    }

/* ================================
       MOBILE RESPONSIVE IMPROVEMENT
       Left section becomes small
       Login visible immediately
    ==================================*/
@media (max-width: 767px) {
    body {
        height: auto;
        overflow: auto;
    }

    .left-section {
        height: auto;
        padding: 15px 10px;
    }

        .left-section h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .left-section img {
            width: 160px; /* Smaller carousel images */
            margin-bottom: 10px;
        }

    .indicator-text {
        gap: 10px;
        font-size: 12px;
    }

        .indicator-text span.active {
            font-size: 14px;
        }

    /* Make carousel smaller */
    #erpCarousel {
        width: 100% !important;
    }

    .carousel-item img {
        height: 140px;
        object-fit: cover;
    }

    /* Login area spacing */
    .login-box {
        margin-top: 10px;
        padding: 0 15px;
    }
}

</style >
