a {
    text-decoration: none;
}
body {
    font-family: "Roboto", sans-serif !important;
}   
.header {border-bottom: 1px solid #ccc;}
.header.sticky{
    position: sticky;
    width: 100%;
    top: 0;
    transition: 0.4s linear;
    z-index: 999;
}
.header ul {
    margin-left: 30px;
}

.header ul li {
    margin-right: 42px;
    position: relative;
}

.header ul li a {
    color: #000;
    font-size: 17px;
}

.submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    z-index: 1000;
    padding: 10px 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.submenu li {
    list-style: none;
    margin: 0 !important;
    text-align: left;
}

.submenu li a {
    display: block;
    padding: 12px 30px;
    color: #eee;
    font-size: 14px;
    border-bottom: 1px solid rgb(0, 0, 0, 0.2);  
    transition: background 0.2s, padding-left 0.2s;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    color: #fc6c30;
    transition: 0.2s linear;
}

.nav li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Footer Styles */
.main-footer {
    background-color: #050505;
    color: #888;
    padding: 80px 0 40px;
}

.footer-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
}

.collaborate-card {
    background-color: #11141d;
    border-radius: 12px;
    transition: transform 0.2s;
}

.collaborate-card:hover {
    transform: translateY(-2px);
}

.collaborate-card .btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.collaborate-card:hover .btn-icon {
    background-color: #333;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    font-size: 14px;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-color: #222 !important;
}

.social-icons a {
    color: #666;
    font-size: 16px;
    margin-right: 20px;
    transition: color 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #fff;
}

.copyright-text {
    font-size: 12px;
    line-height: 1.5;
}

.main-footer ul {
    padding: 0;
}

.main-footer ul li {
    list-style: none;
    text-align: right;
    margin-bottom: 15px;
}

.main-footer ul li a {
    color: #fff;
}

.social-logo {
    text-align: right;
}

.social-logo i {
    font-size: 24px;
    margin-left: 20px;
    color: #fff;
}
/* Hero Section Styles */
.hero-card {
    background-color: #000;
    color: #fff;
    border-radius: 0;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    /* min-height: 400px; */
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
}

.hero-typography {
    text-align: right;
    font-family: "Impact", sans-serif; /* Or a grungy font if available */
    color: rgba(255, 255, 255, 0.9);
    line-height: 0.9;
    font-size: 48px;
    transform: rotate(-2deg);
    font-family: cursive; /* Using cursive for that hand-drawn look seen in image */
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.9;
    filter: blur(0.5px);
}

.hero-typography .typo-line {
    display: block;
}

/* Simulate the dark bird image background */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%; 
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(30, 30, 30, 0.5), #000 90%);
    z-index: 1;
    pointer-events: none;
}

/* Adjustments for typography specific looking font */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap");
.hero-typography {
    font-family: "Caveat", cursive; /* Close enough handheld style font */
    font-size: 52px;
}
.banner{
    background-color: #000;
}
.big-banner-img{
    position: relative;
}
.big-banner-img img{
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.big-banner-img::after{
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.big-banner-content{
    position: absolute;
    top: 0;
    padding: 50px;
    z-index: 2;
}

.main-content {
    background-color: #f8f9fa; /* Light background for contrast */
    padding-top: 40px;
    padding-bottom: 40px;
}

.news {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.news div.img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    margin-bottom: 12px;
}

.news-category p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #fc6c30;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 0;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-date {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    margin-bottom: auto; /* Push author down */
}

.news-author {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
}

.news-author p {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}
.single-news{
    padding: 50px 0;
}
.s-news-cate{
    text-align: center;
}
.s-news-cate p{
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #ff6600;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 0;
    letter-spacing: 0.5px;
}
.single-news-title{
    text-align: center;
}
.single-news-title h3{
    font-size: 34px;
    font-weight: 400;
}
.s-news-img{
    margin-top: 50px;
}
.s-news-img img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}
.s-news-content{
    margin-top: 50px;
}
.s-news-content p{
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}
.related-news {
    margin-top: 50px;
}
.related-news-title{
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.related-news-title h3{
    font-size: 34px;
}
.flex {
    display: flex;
}
.mt-\[21px\] {
    margin-top: 21px;
}

.h-\[34px\] {
    height: 34px;
}
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}.w-\[32px\] {
    width: 32px;
}
.h-\[32px\] {
    height: 32px;
}
.ant-avatar-image {
    background: transparent;
}
.ant-avatar {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: "tnum";
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    line-height: 32px;
    border-radius: 50%;
}
.ant-avatar>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ml-\[8px\] {
    margin-left: 8px;
}
.justify-between {
    justify-content: space-between;
}
.leading-\[16px\] {
    line-height: 16px;
}
.text-\[14px\] {
    font-size: 14px;
}
.leading-\[14px\] {
    line-height: 14px;
}
.text-\[12px\] {
    font-size: 12px;
}
.items-center {
    align-items: center;
}
.flex-row {
    flex-direction: row;
}
.ml-\[12px\] {
    margin-left: 12px;
}
.text-\[\#555555\] {
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1));
}
.text-\[\#909090\] {
    --tw-text-opacity: 1;
    color: rgb(144, 144, 144 );
}
.text-caak-black {
    color: rgb(17,17,17 );
}
.flex-col {
    flex-direction: column;
}
.container-s{
    border-top: 1px solid #d3dce6;
    text-align: center;
    padding: 18px 32px;
    position: relative;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
}
.container-s::before {
    content: "";
    position: absolute;
    top: -101%;
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
.width-container {
    max-width: 665px;
}
.p1 {
    color: #000000;
    padding-top: 82px;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: .5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-align: center;
}
.p2 {
    color: #000000;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
}
a.button {
    text-align: center;
    font-size: 14px;
    font-family: "Logic Monospace", monospace;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5px;
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 400;
    background-color: #fc6c30;
    border-radius: 4px;
    display: block;
    padding: 15px;
    color: #ffffff;
    margin: 24px auto;
    height: 44px;
    max-width: 192px;
    min-width: 192px;
}

/* Mobile Header Styles */
.mobile-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.mobile-logo span {
    font-family: 'Roboto', sans-serif;
    color: #111;
    letter-spacing: -1px;
}

.mobile-nav-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    background: #fff;
    padding-bottom: 0px; /* Adjust if scrollbar shows */
}

.mobile-nav-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.mobile-nav-scroll ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
    margin-bottom: 0; 
}

.mobile-nav-scroll .nav-item a {
    display: block;
    padding: 12px 5px;
    color: #555; /* Default text color */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-scroll .nav-item.active a {
    color: #111; /* Active color */
}

.mobile-nav-scroll .nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff6600; /* Orange underline */
    border-radius: 2px 2px 0 0;
}


/* Icon adjustments */
.mobile-header .bi {
    cursor: pointer;
    color: #333;
}
.mobile-header ul li {
    margin-right: 22px;
}

/* Footer Styles additional */
.footer-heading {
    text-align: right;
}

.login{
    padding: 100px 0;
}
.login-title{
    text-align: center;
    margin-bottom: 20px;
}
.login-form{
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.login-form form div{
    display: flex;
    flex-direction: column;
}
.login-form form div label{
    margin-bottom: 10px;
}
.login-form form div input{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-form form button{
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fc6c30;
    color: #fff;
    cursor: pointer;
    transition: 0.2s linear;
}
.login-form form button:hover{
    background-color: #fc6c30;
    color: #fff;
    cursor: pointer;
    transition: 0.2s linear;
    transform: translateY(-2px);
}

.login-form form button:active{
    background-color: #fc6c30;
    color: #fff;
    cursor: pointer;
    transition: 0.2s linear;
    transform: translateY(-2px);
}
/* Plan Page Styles */
.plan-page-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 85vh;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: #fff;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.most-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fc6c30;
    color: #fff;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(252, 108, 48, 0.3);
}

.card-body {
    padding: 40px;
}

.pricing-header .plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 5px;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 15px;
    color: #1a1a1a;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 4px;
    color: #555;
}

.amount {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.period {
    font-size: 14px;
    color: #888;
    margin-left: 6px;
    font-weight: 500;
}

.divider-custom {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
    margin: 30px 0;
}

/* Feature List */
.feature-list {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #495057;
    font-size: 15px;
}

.feature-list li i {
    margin-right: 12px;
    font-size: 18px;
    color: #28a745; /* Success Green */
    flex-shrink: 0;
}

/* Premium Button */
.premium-btn {
    background: linear-gradient(135deg, #fc6c30 0%, #ff8e53 100%);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(252, 108, 48, 0.2);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(252, 108, 48, 0.3);
    background: linear-gradient(135deg, #e6551b 0%, #fc6c30 100%);
    color: #fff;
}



@media (max-width: 991.98px) {
    .header {
        padding: 0 !important;
        background-color: #fff !important;
        color: #333 !important;
    }

    /* Welcome Page Mobile Adjustments */
    .big-banner-img img {
        height: 247px !important;
    }
    
    .big-banner-content {
        padding: 20px !important;
    }
    
    .hero-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .hero-tag, .hero-category {
        font-size: 10px !important;
    }

    .hero-meta {
        margin-top: 20px !important;
    }

    .ads-banner img {
        height: auto;
    }

    .banner .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    /* Footer Mobile Adjustments */
    .footer-heading {
        text-align: left !important;
        margin-top: 30px;
    }
    .main-footer ul li {
        text-align: left !important;
    }
    .social-logo {
        text-align: left !important;
    }
    .footer-col {
        margin-bottom: 20px;
        padding-left: 15px; /* Ensure some padding */
        padding-right: 15px;
    }
    .main-footer {
        padding: 40px 0; /* Reduce padding */
    }
    .copyright-text p {
        text-align: center !important;
    }
    .s-news-img img {
        width: 100%;
        height: 273px;
        object-fit: cover;
        border-radius: 10px;
    }
    .ads-banner img {
        height: 150px;
        object-fit: cover;
    }
}

/* Mobile Sidebar Menu */
.mobile-sidemenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidemenu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidemenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px; 
    max-width: 85%;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0,0,0,0.1);
}

.mobile-sidemenu.active {
    left: 0;
}

.sidemenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    background: #fff;
    /* border-bottom: 1px solid #f1f1f1; */
}

.btn-close-custom {
    background: none;
    border: none;
    font-size: 20px;
    color: #1a1a1a;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-close-custom:hover {
    transform: rotate(90deg);
    color: #fc6c30;
}

.sidemenu-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidemenu-nav {
    padding: 10px 0;
}

.sidemenu-nav .nav-item {
    border-bottom: 1px solid #f8f9fa;
}

.sidemenu-nav .nav-link,
.sidemenu-nav .nav-link-wrapper {
    display: block;
    padding: 16px 24px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.sidemenu-nav .nav-link-wrapper {
    display: flex; /* Ensure flex behavior for wrapper */
}

.sidemenu-nav .nav-link:hover,
.sidemenu-nav .nav-link-wrapper:hover {
    background-color: #fcfcfc;
    color: #fc6c30;
}

.submenu-icon {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
}

.nav-item.open .submenu-icon {
    transform: rotate(180deg);
}

.nav-item.open .nav-link-wrapper {
    color: #fc6c30;
}

/* Submenu Styles */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fbfbfb;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 24px 12px 40px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.mobile-submenu li a:hover {
    color: #fc6c30;
    background-color: #f5f5f5;
    border-left-color: #fc6c30;
}

/* Helper for stopping body scroll */
body.overflow-hidden {
    overflow: hidden;
}

.ads {
    padding: 50px 0;
}
/* Ads Page Styles */
.ads-table-container {
    max-width: 100%;
    margin: 30px auto;
}

.ads-table th, .ads-table td {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
    border: 1px solid #000 !important; /* Force black borders as per image */
    font-weight: 500;
    font-size: 14px;
    text-transform: lowercase;
}

.ads-table {
    border: 1px solid #000 !important;
}
.contact-ads a{
    padding: 10px 20px;
    background-color: #fc6c30;
    color: #fff;
    border-radius: 12px;
}
.contact-ads a i{
    margin-left: 10px;
}

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

/* Login Page Styles */
.login-page-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px 0;
}

.modern-login-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.modern-login-card:hover {
    transform: translateY(-5px);
}

.login-header h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 8px;
}

.login-header p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 30px;
}

.form-label-custom {
    font-weight: 500;
    color: #344054;
    margin-bottom: 8px;
    font-size: 14px;
}

.auth-input {
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #fff;
    height: auto;
}

.auth-input:focus {
    border-color: #fc6c30;
    box-shadow: 0 0 0 4px rgba(252, 108, 48, 0.1);
    outline: none;
}

.auth-input::placeholder {
    color: #98a2b3;
}

.custom-checkbox .form-check-input {
    width: 18px;
    height: 18px;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    margin-top: 2px;
}

.custom-checkbox .form-check-input:checked {
    background-color: #fc6c30;
    border-color: #fc6c30;
}

.custom-checkbox .form-check-label {
    font-size: 14px;
    color: #344054;
    padding-left: 2px;
    cursor: pointer;
}

.forgot-link {
    font-size: 14px;
    color: #fc6c30;
    font-weight: 500;
    text-decoration: none;
}

.forgot-link:hover {
    color: #e6551b;
    text-decoration: underline;
}

.login-btn {
    background-color: #fc6c30;
    border: none;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.login-btn:hover, .login-btn:focus {
    background-color: #e6551b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 108, 48, 0.25);
}

.register-link {
    color: #fc6c30;
    font-weight: 600;
    text-decoration: none;
}

.register-link:hover {
    color: #e6551b;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .modern-login-card {
        padding: 30px 20px;
        box-shadow: none;
        background: transparent;
    }
    .login-page-wrapper {
        background: #fff;
    }
}