﻿/*--------------------------------------------------------------
Changes made on 18-04-2025
--------------------------------------------------------------*/
/* Button Styling */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

body {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent !important;
    background: #00000000;
}

    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/Images/img/carousel/loginbackground.jpg') !important;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
        background-size: cover;
        opacity: 0.35;
        z-index: -1;
    }

a {
    text-decoration: none;
    color: inherit;
}
h4, .h4{
    font-size:1.5rem;
}
.card-header {
    background-color: transparent;
    border-bottom: none;
}

.login-box {
    max-width: 850px; 
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.login-form {
    border-radius: 0 !important;
/*    padding:5rem !important;*/
}

.social-login img {
    width: 40px;
    margin: 0 8px;
    cursor: pointer;
}

.divider {
    text-align: center;
    margin: 20px 0;
    font-weight: 500;
}

.smart-signin-btn {
    width: 180px;
    max-width: 100%;
    background: #095797;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

    .smart-signin-btn:hover {
        background-color: #0071A2;
        color: #ffffff;
        border-color: #0071A2;
        padding: 8px 8px;
    }

.signin-frgtpwd {
    width: 180px;
    max-width: 100%;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 600;
    color: #095797;
}

.ask-signup {
    color: #095797;
}

.illustration {
    /* background: #f9f9f9; */
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .illustration img {
        width: 250px;
        margin-bottom: 20px;
    }

.btn-outline-primary {
    color: #0d6efd;
    background: #0067ff1c;
    border-color: #0d6efd;
    flex-wrap: nowrap !important;
}

.left-card {
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.03), /* left shadow */
    0 -5px 10px rgba(0, 0, 0, 0.03), /* top shadow */
    0 5px 10px rgba(0, 0, 0, 0.03); /* bottom shadow */
    border-right: none !important;
}

.right-card {
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.03), /* right shadow */
    0 -5px 10px rgba(0, 0, 0, 0.03), /* top shadow */
    0 5px 10px rgba(0, 0, 0, 0.03); /* bottom shadow */
    border-left: none !important;
}

.custom-indicators button {
    width: 30px;
    height: 5px;
    margin: 5px;
    padding: 0.15rem 0.5rem;
    background-color: rgba(0, 25, 125, 0.284);
    border: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

    .custom-indicators button.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #0d6efd; /* Bootstrap Primary */
        animation: fillProgress 5s linear forwards;
    }

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    padding: 0;
    background-color: #0000904f; /* Lighter semi-transparent blue */
    transition: background-color 0.6s, width 0.3s, height 0.3s;
}

.carousel-indicators .active {
    width: 30px;
    height: 5px;
    border-radius: 8px !important;
    /* transition: background-color 0.3s, width 0.3s, height 0.3s; */
}


@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.custom-indicators {
    bottom: -80px; /* move indicators slightly below */
}
/* Styling for social icons */
.social-login {
    display: flex;
    justify-content: center; /* Center the icons horizontally */
    gap: 1rem; /* Add spacing between icons */
    margin-bottom: 20px; /* Adjust bottom margin */
}

.social-icon {
    font-size: 22px; /* Increase icon size for better visibility */
    padding: 8px; /* Add padding around the icon */
    border-radius: 10px; /* Rounded corners */
    background-color: #f8f9fa; /* Light background for icons */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Light shadow */
    cursor: pointer; /* Pointer cursor on hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

    .social-icon:hover {
        transform: scale(1.1); /* Slightly enlarge the icon on hover */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
    }

/* Divider style */
.divider {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #000; /* Dark color for the text */
    margin-top: 20px;
    margin-bottom: 10px;
}

.bi-apple::before, .bi-google-play::before {
    color: #69bc46;
}

.form-label {
    margin-bottom: .5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #444444;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:hover {
    border: 1.5px solid #4652b7 !important;
    transition: 0.2s linear;
}

.form-control {
    font-size: 14px !important;
}
.version-font {
    font-size: 0.7rem !important;
}

@media (max-width: 1160px) {
    .loginbtn {
        flex-direction: column !important;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .responsive-heading {
        font-size: 0.8rem !important;
    }

    .responsive-paragraph {
        font-size: 0.685rem !important;
    }

    .signin-frgtpwd {
        max-width: 80%;
        font-size: 0.7rem;
    }
    }

@media (max-width: 1400px) {
    .responsive-heading {
        font-size: 1rem !important;
    }
    .signin-frgtpwd {
        max-width: 80%;
        font-size: 0.7rem;
    }
}

@media (max-width: 1200px) {
    .responsive-heading {
        font-size: 1rem !important;
    }
    .signin-frgtpwd {
        max-width: 80%;
        font-size: 0.7rem;
    }
}

@media (max-width: 992px) {
    .responsive-heading {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 768px) {
    .responsive-heading {
        font-size: 0.95rem !important;
    }

    .responsive-paragraph {
        font-size: 0.785rem !important;
    }

    .signin-frgtpwd {
        font-size: 0.9rem;
    }
}

@media (min-width: 576px) {
    .signin-frgtpwd {
        font-size: 1rem;
    }
    .footer-text1 {
        font-size: 0.95rem;
    }
    .responsive-forgot {
        font-size: 0.65rem;
        font-weight: 600;
    }

    .backtologin {
        margin-top: 1rem !important;
    }
}
@media (min-width: 375px) {

    .login-form {
        padding: 2rem !important;
    }
    .footer-text1 {
        font-size: 1rem !important;
    }
}
@media (min-width: 320px) {
    .logo-lms {
        margin-bottom: 0 !important;
    }
    .footer-text1{
        font-size:0.65rem;
    }
    .login-form {
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    }
}
/**/
.store-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 6px 12px;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    transition: background-color 0.3s;
}

    .store-btn:hover {
        background-color: #f1f1f1;
    }

    .store-btn img {
        height: 24px;
        margin-right: 8px;
    }

.store-text {
    line-height: 1;
}

    .store-text small {
        display: block;
        font-size: 10px;
    }

    .store-text strong {
        font-size: 14px;
    }
/*footer start*/
.footer-text {
    color: #095797 !important;
    font-weight:600;
}
.responsive-forgot {
    font-size: 0.75rem; /* Default for small devices */
}

@media (min-width: 768px) {
    .responsive-forgot {
        font-size: 0.55rem;
        font-weight: 600;
    }
    .backtologin {
        margin-top: 1.5rem !important;
    }
}

@media (min-width: 992px) {
    .responsive-forgot {
        font-size: 0.65rem;
        font-weight:600;
    }
    
}
@media (min-width: 1200px) {
    .responsive-forgot {
        font-size: 0.85rem;
        font-weight: 600;
    }
}
