﻿

body {
    background-color:#fff;

    font-family: "Work Sans","Nunito",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.img-responsive {
    width: 100%;
    height: auto;
}

.login-shell {
    max-width: 1100px;
    margin: 1.5rem auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .login-shell {
        grid-template-columns: 1fr;
        margin: 2rem 1rem;
    }
}

/* Left hero like your mock */
.hero-pane {
    position: relative;
    border-radius: 20px;
    color: #fff;
    min-height: 540px;
    overflow: hidden;
    padding-top:0px;
}

    .hero-pane h1 {
        font-weight: 800;
        line-height: 1.05;
        margin: 0 0 1rem 0;
        font-size: clamp(2.2rem, 2.8vw + 1rem, 3rem);
    }

        .hero-pane h1 .accent {
            color: #fff;
            text-shadow: 0 2px 0 rgba(0,0,0,.06);
        }

    .hero-pane p {
        opacity: .95;
        margin: 0 0 1.25rem 0;
        font-size: 1.05rem;
    }

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    color: #f26800;
    border: none;
    padding: .85rem 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.hero-powered {
    position: absolute;
    left: 1.25rem;
    bottom: 1.1rem;
    font-size: .8rem;
    opacity: .9;
}

.hero-art {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(54%,520px);
    height: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    /* Put your image here */
    background-image: url("@Url.Content("~/adminassets/images/login-hero.png")");
    pointer-events: none;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
}

/* Right login card */
.auth-card {
    
   
    padding: 2rem 2rem 2.2rem;
   
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.brand-logo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: grid;
    place-items: center;
    
}
    .brand-logo img {
        width:35%;
    }
    .brand h3 {
        margin: 0;
        font-weight: 800;
        letter-spacing: .2px;
    }

.brand small {
    color: var(--muted);
    display: block;
    margin-top: -2px;
}
.heading-div {
width:100%;
text-align:center;
}
.auth-title {
    display: inline-block;
    margin-top:10px;
    color: #F37021;
    font-weight: bold;
    border-bottom: 2px solid #F37021;
    padding-bottom: 5px;
    margin-bottom:5px;
    
}
.rememberdiv {
    margin-top: 10px;
    color: #9AA5B5;
}
.form-label {
    font-weight: 600;
    color: #3a3a3a;
}

.form-control {
   
    padding: .85rem .95rem;
    border-color: #fff;
    border-bottom: solid 1px #9AA5B5;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .55;
}

.with-icon input {
    padding-left: 3.2rem;
}

.muted-link {
    color: var(--muted);
    text-decoration: none;
}

    .muted-link:hover {
        text-decoration: underline;
    }

.btn-brand {
    background: #F37021;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    padding: .9rem 1rem;
}
.text-muted {
font-size:14px;
}
.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
}

.divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: .75rem;
    color: var(--muted);
    font-size: .9rem;
    margin: 1rem 0;
}

    .divider:before, .divider:after {
        content: "";
        height: 1px;
        background: #ececf3;
        display: block;
    }

.socials {
    display: flex;
    justify-content: center; /* Centers icons horizontally */
    align-items: center; /* Aligns them vertically */
    gap: 15px; /* Space between icons */
    margin-top: 15px; /* Optional: spacing from top */
}

    .socials a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%; /* Makes icons round */
        background-color: #f5f5f5; /* Light background (optional) */
        color: #333; /* Icon color */
        font-size: 20px; /* Icon size */
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .socials a:hover {
            background-color: #eaeaea; /* Hover effect */
            transform: scale(1.1); /* Slight zoom on hover */
        }
