/***Added By Ashok*/
input[type="password"].is-invalid {
    background-position: right calc(2.475em + .1875rem) center;
}


/* Ankit incldued css file for login page */

:root {
    --primary-color: #4e73df;
    --secondary-color: #858796;
    --success-color: #1cc88a;
    --background-color: #f8f9fc;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--background-color);
}

/* Left Side Styling */
.left-side {
    background: url("../images/login_bg.jpeg") center/cover;
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.overlayed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.27);
    opacity: 1;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
}

/* Login Section Styling */
.login-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 2rem; */
    background: rgba(255, 255, 255, 0.15);
    margin-top: 18rem !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);

    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    border-radius: 16px;
    max-width: 500px;
    margin: 2rem auto;
    height: 350px;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.logo {
    width: 240px;
    height: auto;
}

/* Form Styling */
.form-floating {
    position: relative;
}

/* .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 1rem;
} */

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--secondary-color);
}

/* Button Styling */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}



/* Links */
.forgot-password,
.register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container {
    animation: fadeIn 0.5s ease-out;
}

.uniform-height {
    height: 48px;
    padding: 10px 12px;
    font-size: 1rem;
}

/* Ankit changes as per the new design adn the dashboard */
.left-image,
.right-image {
    max-height: 100px;
}

.left-image {
    padding-left: 8px;
}

.header-text {
    font-size: 32px;
    font-weight: 700;
    color: #4b98da;
    text-shadow: #9c9a9a 1px 2px 2px;
}

.sub-header-text {
    font-size: 28px;
    color: #000000;
    text-shadow: #3F63AA 1px 2px 2px;
}

.custom-card-header {
    background: linear-gradient(to right, #f39c12, #f1c40f);
    color: #ffffff;
    padding: 15px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.custom-card-header h6 {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}


.custom-breadcrumb {
    padding: 10px 20px;
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: large;
}

.custom-breadcrumb li {
    font-size: 14px;
}

.custom-breadcrumb li a {
    color: #007bff;
    text-decoration: none;
}

.custom-breadcrumb li.active {
    color: #6c757d;
}



/* Login Page Header */

.sashakt-header {
    background: linear-gradient(90deg, #ffbb33, #ff8800);
    /* Gradient for depth */
    color: white;
    height: 55px;
    text-align: center;
    padding: 15px 10px;
    margin: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.sashakt-header h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.8rem;
    /* Slightly larger font for emphasis */
    margin: 0;
}

.login-form input{
    height: 10px !important;
}