﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
.container-fluid {
    min-height: 100vh; /* Full screen height */
    width: 100%;
    /*background-image: url('/images/moolah-login-bgdesign-portal.svg');*/
    background-size: cover; /* Full cover */
    background-position: center; /* Center image */
    background-repeat: no-repeat; /* No repeat */
    /* Optional styling */
    padding: 0px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.bg-svg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}

.mt-20 {
    margin-top: 20px;
}
.input-container {
    position: relative;
}

.toggle-button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

body {
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.password-container {
    position: relative;
    border-radius: 8px;
    padding-bottom: 5px;
    padding-top: 5px;
    /*    padding: 5px;*/
}

/* Container */
.container {
    display: flex !important;
    gap: 100px !important;
    padding: 20px !important;
    height: 100vh !important;
}

.illustration {
    width: 100%;
    height: auto;
}

.illustration-container-logo {
    position: relative;
    max-width: 400px;
}

.illustration-logo {
    width: 50%;
    height: auto;
}

.elements .icon {
    position: absolute;
    width: 50px;
    opacity: 0.3;
}

.icon:nth-child(1) {
    top: 20px;
    left: 10px;
}

.icon:nth-child(2) {
    bottom: 30px;
    right: 20px;
}
/* Right Section */
.right-section {
    flex: 18;
    background-color: #ffffff;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    border-radius: 10px;
    height: 100vh;
}

.login-box {
    width: 100%;
    max-width: 551px;
    /*    margin-bottom: 40px;*/
    /*text-align: center;*/
}

    .login-box h1 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }

    .login-box p {
        color: #666;
        margin-bottom: 30px;
        font-size: 1rem;
    }

.form-group {
    margin-bottom: 20px;
    position: relative;
}

input {
    /*    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    // border: 1px solid #ddd;
    border: 1px solid #DBDFE9;
    border-radius: 6px;
    background: #F5F5F5;*/
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #DBDFE9;
    border-radius: 6px;
    background: #F5F5F5;
    width: 406px;
    height: 50px;
    top: 21px;
    opacity: 1;
    margin-top: 4px;
}

    input::placeholder {
        opacity: 0.5;
        color: #A2A2A2 !important;
        /*        font-family: Inter;*/
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        vertical-align: middle;
    }


    input:focus {
        border-color: #D5B241;
        outline: none;
    }

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.form-options {
    /*    text-align: right;*/
    margin-bottom: 20px;
}

.forgot-password {
    color: #D5B241;
    text-decoration: none;
    /*    font-family: Inter;*/
    font-weight: 700;
    font-size: 16px;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

.btn {
    width: 100%;
    padding: 12px;
    background-color: #D5B241;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

    .btn:hover {
        background-color: #D5B241;
    }

@media (max-width: 200px) {
    .container {
        width: 100% !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 5px !important;
    }

    .left-section {
        display: none !important;
        /* Hide the left section on very small devices */
    }

    .right-section {
        padding: 20px !important;
    }

    input {
        font-size: 0.85rem !important;
        padding: 10px !important;
    }

    .btn {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 650px) {
    .container {
        flex-direction: column !important;
        padding: 10px !important;
        gap: 20px !important;
    }

    .right-section {
        display: none !important; /* Hide the image container */
    }

    .left-section,
    .right-section {
        flex: 1 !important;
        padding: 30px !important;
        text-align: center !important;
    }

    .illustration-container {
        max-width: 300px !important;
    }

    .illustration-container-logo {
        max-width: 300px !important;
    }

    h1 {
        font-size: 1.5rem !important;
    }

   
    input {
        padding: 10px !important;
        font-size: 0.9rem !important;
    }

    .btn {
        font-size: 1rem !important;
        padding: 10px !important;
    }
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

    .alert-danger .alert-link {
        color: #6a1a21;
    }


.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 3rem;
}

    .alert-dismissible .btn-close {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        padding: 1.25rem 1rem;
    }

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.txt-center {
    text-align: center !important;
}

.alert-primary {
    color: #084298 !important;
    background-color: #cfe2ff !important;
    border-color: #b6d4fe !important;
}

    .alert-primary .alert-link {
        color: #06357a !important;
    }
.form-control {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

    .form-control:focus {
        box-shadow: none !important;
    }
.left-section {
    flex: 10;
    padding: 60px 50px 0px 50px;
    /* padding-top: 25px;*/
    /*    display: ruby;*/
    display: flex;
    flex-direction: column;
    position: relative;
    /*  overflow: overlay;
    height: 100vh;*/
}

    .left-section::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

.detailss {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}


.contact-footer {
    margin-top: 60px;
    font-size: 16px;
    color: #333;
}

    .contact-footer p {
        margin: 8px 0;
        gap: 8px;
        vertical-align: middle;
      /*  display: flex;*/
    }

}

.social-icons {
    margin-top: 18px
}

    .social-icons i {
        font-size: 18px;
        margin-right: 10px;
        color: #D5B241;
    }

    .social-icons p {
        color: #333333;
        font-weight: 600;
        font-size: 20px;
        text-decoration: underline;
        text-decoration-style: solid;
        text-decoration-thickness: 0%;
        font-family: Inter, system-ui;
    }

.info {
    /*    font-family: Inter;*/
    font-weight: 400;
    font-size: 20px;
    color: #333333;
}

.in {
    /*    font-family: Inter;*/
    font-weight: 400;
    font-size: 20px;
    color: #D5B241;
    font-family: Inter, system-ui;
}

.details {
    display: block;
    gap: 15px;
    width: max-content;
}

form-control {
    margin-top: 0.75rem;
}

label {
    color: #333333;
    /*    font-family: Inter;*/
    font-weight: 600;
    font-size: 16px;
    vertical-align: middle;
}

.social-icons {
    margin-top: 20px;
}

/*.callsvg {
    width: 20px;
    height: 20px;
    opacity: 1;
    margin-right: 6px;
}*/

/*.emailsvg {*/
/*    width: 24px;
    height: 24px;*/
/*opacity: 1;
    margin-right: 6px;
}*/
.form-control {
    padding: 0px !important;
    line-height: 1 !important;
    border: none !important;
}

.container-fluid {
    height: 100vh;
    overflow: hidden;
}

.carousel-caption {
    position: absolute;
    left: 5% !important;
    bottom: 8rem !important;
    left: 45% !important;
    /* padding: 1.25rem; */
    color: #fff;
    text-align: left !important;
    width: 80% !important;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: left !important;
    padding: 0 !important;
    margin-right: 0% !important;
    margin-bottom: 8.5rem !important;
    margin-left: 6% !important;
}

    .carousel-indicators [data-bs-target] {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 8px !important;
        height: 8px !important;
        padding: 0;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border: 0;
        border-top: 0px solid #ffffff !important;
        border-bottom: 0px solid #ffffff !important;
        /* opacity: .5; */
        transition: opacity .6s ease;
    }

    .carousel-indicators .active {
        opacity: 1;
        height: 6px !important;
        width: 30px !important;
    }

    .carousel-indicators button {
        -webkit-appearance: none;
        appearance: none;
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 12px;
        height: 12px;
        padding: 0;
        margin: 0 5px;
        cursor: pointer;
        background-color: #fff;
        border: none;
        border-radius: 50%; /* default circle */
        opacity: 0.5;
        transition: all 0.4s ease; /* smooth resize */
    }

        /* when active → long bar */
        .carousel-indicators button.active
        .carousel-indicators button[aria-current="true"] {
            width: 35px; /* long shape */
            height: 6px; /* thinner */
            border-top: 4px solid transparent !important;
            border-bottom: 4px solid transparent !important;
            background-color: #ffffff; /* your highlight color */
            opacity: 1;
        }

.grey {
    color: #777777;
    font-size: 16px;
    font-weight: 500;
    font-family: Inter, system-ui;
}

.form-outline {
    display: grid;
}

.custom-button {
    background: #D5B241;
    width: 185px;
    height: 45px;
    opacity: 1;
    border-radius: 6px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    gap: 10px;
    border: none;
    color: #FFFFFF;
    /* font-family: Inter; */
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    vertical-align: middle;
}

button.btn.custom-button {
    background: #D5B241;
    width: 203px;
    height: 42px;
    opacity: 1;
    border-radius: 6px;
    padding-top: 10px;
    padding-right: 44px;
    padding-bottom: 10px;
    padding-left: 44px;
    gap: 10px;
    border: none;
    color: #FFFFFF;
    /* font-family: Inter; */
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    border: 1px dashed #E60000 !important;
    width: 100%;
    max-width: 400px;
}

.link {
    font-size: 18px;
    font-weight: 600;
    color: #515151;
    text-decoration: underline;
    font-family: Inter, system-ui;
}

.alert.alert-success {
    border: 1px dashed #09AD47;
    background: #daf3e3;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    font-family: Inter, system-ui;
}

h2 .highlight {
    color: #d5b241;
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    top: -5px;
}

h4.pb-1 {
    color: #212121;
    /* font-family: Inter; */
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    vertical-align: middle;
}

h4.mt-1.pb-1 {
    color: #212121;
    /* font-family: Inter; */
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    vertical-align: middle;
}

button.btn.custom-button:active {
    background: #D5B241;
    width: 203px;
    height: 42px;
    opacity: 1;
    border-radius: 6px;
    padding-top: 10px;
    padding-right: 44px;
    padding-bottom: 10px;
    padding-left: 44px;
    gap: 10px;
    border: none;
    color: #FFFFFF;
    /* font-family: Inter; */
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
}

.alert.alert-danger {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', system-ui;
    width: 100%;
    max-width: 551px;
}

@media only screen and (min-width: 1536px) and (max-height: 864px) {
    .forgot-password {
        font-weight: normal !important;
    }
    .login-box {
        position: relative;
    }
    .main-heading {
        font-size: 24px;
    }

    span {
        font-size: 18px;
        font-weight: normal !important;
    }

    .in .label {
        
        font-size: 16px !important;
        white-space: nowrap
    }

    .contact {
        font-size: 18px !important;
        font-weight: normal !important;
    }

    .social-icons p {
        font-size: 16px !important;
        font-weight: normal !important;
    }

    .container {
        display: flex !important;
        gap: 55px !important;
        padding: 20px !important;
        height: 100vh !important;
    }

    .details {
        display: flex !important;
        gap: 20px !important;
    }

    .left-section {
        flex: 10;
        /* padding: 20px; */
        /* padding-top: 25px; */
        /* display: ruby; */
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .contact-footer {
        margin-top: 40px;
        font-size: 16px;
        color: #333;
        padding-right: 10px;
    }

    .logo-margin-top {
        margin-top: 20px;
    }

    .main-logo {
        width: 40% !important;
    }

    .type-logo {
        padding-bottom: 20px;
        width: 6% !important;
    }

    input {
        height: 44px !important;
    }

    .toggle-icon {
        right: 25% !important;
    }
    img.callsvg {
        width: 20px;
    }

    img.emailsvg {
        width: 20px;
    }
    .carousel-caption p {
        font-size: 16px;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    h2 .highlight {
        font-size: 2rem;
    }
    label {
        font-weight: normal !important;
        686
    }

    .main-heading {
        font-weight: normal !important;
    }

    .custom-button {
        font-weight: normal !important;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 768px) {
    .contact-footer {
        margin-top: 20px !important;
    }

    .in .label {
        font-size: 16px !important;
    }

    .main-heading {
        padding-bottom: 0px !important;
        font-size: 24px;
    }

    .detailss {
        margin-top: 5px !important;
    }

    span {
        font-size: 18px;
    }

    input {
        height: 44px !important;
    }
    #username::placeholder {
        font-weight: 600; /* 400 = normal, 600 = semi-bold, 700 = bold */
        color: #A2A2A2; /* optional */
        opacity: 1; /* ensures full visibility */
    }
    .container {
        display: flex !important;
        gap: 42px !important;
        padding: 20px !important;
        height: 100vh !important;
    }

    .details {
        display: grid ;
        gap: 0px;
    }

    .social-icons {
        margin-top: 10px !important;
    }

    .left-section {
        flex: 10;
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 30px 30px 0px 30px;
        overflow: overlay;
        height: 750px;
    }

    .main-logo {
        width: 37% !important;
    }

    .type-logo {
        padding-bottom: 20px;
        width: 5% !important;
    }

    .contact-footer {
        padding-right: 10px !important;
        margin-top: 25px !important;
        font-size: 16px;
        color: #333;
    }

    .toggle-icon {
        right: 32% !important;
    }

    .main-heading {
        font-style: normal;
        /* font-family: Inter; */
        font-weight: 700;
        font-size: 22px;
        vertical-align: middle;
        padding-bottom: 4px;
        color: #D5B241;
    }

    span {
        color: #777777;
        /* font-family: Inter; */
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        vertical-align: middle;
        font-family: Inter, system-ui;
    }

    .logo-margin-top {
        margin-top: 0px;
    }

    .toggle-icon {
        position: absolute;
        top: 54%;
        right: 18%;
        transform: translateY(-50%);
        cursor: pointer;
        width: 20px;
        height: 20px;
        background: url(data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1" d="M13.875 18.825A10.05 10.05 0 0112 19c-4.477 0-8.268-2.943-9.542-7a10.05 10.05 0 013.011-4.5m5.64-3.015A10.03 10.03 0 0112 5c4.478 0 8.268 2.943 9.542 7-.405 1.29-.979 2.487-1.687 3.535M15 12a3 3 0 01-4.243 4.243M9.879 9.879a3 3 0 014.242 4.243m0 0L21 21M3 3l18 18" /></svg>) no-repeat center center;
        background-size: contain;
    }

    .in {
        /* font-family: Inter; */
        font-weight: 400;
        font-size: 17px;
        color: #D5B241;
    }
}


button.disabled-btn {
    opacity: 0.6 !important;
    pointer-events: none !important;
}



.left-panel {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    margin: 20px 0px 20px 10px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    padding: 1rem;
    border-radius: 0.5rem;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 80%;
}

    .carousel-caption h2 {
        font-size: 3rem;
        font-weight: 600;
        font-family: Inter, system-ui;
    }

    .carousel-caption p {
        font-size: 20px;
        font-weight: 400;
        font-family: Inter, system-ui;
    }

.carousel-indicators {
    bottom: 15px;
    justify-content: center;
    gap: 8px;
}

    .carousel-indicators [data-bs-target] {
        width: 20px;
        height: 8px;
        border-radius: 50px;
        background-color: #fff;
        border: none;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .carousel-indicators .active {
        width: 80px;
        /* More than others */
        background-color: #00838f;
        /* Highlight color */
    }
.left-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-box {
    flex-grow: 1;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .right-section {
        display: none;
    }
}

@media only screen and (max-width: 767px) {

    .left-panel {
        display: none;
    }

    input {
        width: 100% !important;
    }

    .toggle-icon {
        right: 5%;
    }

    .details {
        display: inline;
    }

    .contact-footer {
        margin-top: 30px;
    }

    .logo-margin-top {
        margin-top: 0px;
    }

    .main-logo {
        width: 75%;
    }
}
