
    /* fonts.googleapis.com */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5; /* Light grey background */
}

.login-page-wrapper {
    min-height: 100vh;
    display: flex; /* Flexbox for full height */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
}

.login-image-section {
    background: linear-gradient(135deg, #FF6F00 0%, #FF9800 100%); /* Orange gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Ensure it takes full viewport height */
    position: relative;
    overflow: hidden;
    padding: 30px; /* Padding for image section */
}
.login-image-section .image-contentbox {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.login-promo-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 30px;
}

.login-form-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08); /* Soft shadow */
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Ensure it takes full viewport height */
}

.max-width-form {
    max-width: 400px; /* Constrain form width on larger screens */
    width: 100%;
}

.login-logo {
    max-width: 250px; /* Adjust logo size */
    height: auto;
    margin-bottom: 25px;
}

.form-control {
    border-radius: 8px; /* Slightly rounded inputs */
    padding: 12px 15px;
    border-color: #e0e0e0;
}
.form-control:focus {
    border-color: #FF6F00; /* Orange focus */
    box-shadow: 0 0 0 0.25rem rgba(255, 111, 0, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    border-radius: 8px 0 0 8px;
    border-color: #e0e0e0;
    padding: 0.75rem 1rem;
    color: #6c757d;
}
.input-group input.form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}
.input-group .toggle-password {
    border-left: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    background-color: #f8f9fa;
    color: #6c757d;
}

.btn-primary {
    background-color: #FF6F00; /* Brand orange color */
    border-color: #FF6F00;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
    background-color: #e66300; /* Darker orange on hover */
    border-color: #e66300;
    transform: translateY(-2px); /* Subtle lift effect */
}
.custom-btn-primary i {
    transition: transform 0.3s ease;
}
.custom-btn-primary:hover i {
    transform: translateX(5px);
}

.form-check-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.link-primary {
    color: #FF6F00 !important;
}
.link-primary:hover {
    color: #e66300 !important;
}
.login-left-panel{
    color: #fff; padding: 60px;
    /*background: linear-gradient(135deg, #eb6639, #39566b);*/
    background: #314e62 !important;
}
/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .login-form-section {
        min-height: 100vh;
        border-radius: 0;
        box-shadow: none;
        padding: 30px;
    }
    .image-contentbox {
        padding: 20px;
    }
}

.bg-gradient {
        background: linear-gradient(135deg, #eb6639, #39566b);
    }
    .form-control:focus {
        box-shadow: 0 0 8px rgba(235, 102, 57, 0.6);
        border-color: #eb6639;
    }
    .btn-primary:hover {
        background-color: #d9572d !important;
    }
