/* Custom CSS for BirlaExch Home Page Replica - 100% Pixel Perfect Match */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar completely */
::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

/*
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #ddb938;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c7a732;
}

::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

::-webkit-scrollbar-corner {
    background: #000000;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #ddb938 #000000;
}
*/

body {
    background-color: #ececed;
    color: #212529;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Top Utility Bar */
.header-top {
    background-color: #ddb938;
    height: 25px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #c5a530;
}

.socialmediaicon {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}

.socialmediaicon li {
    display: flex;
    align-items: center;
}

.socialmediaicon li a {
    font-family: Roboto Condensed, sans-serif;
    color: #000;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.socialmediaicon li a i {
    font-size: 12px;
}

.header-top-right {
    color: #000;
    font-weight: bold;
}

/* Main Header */
.loginheader {
    background-color: #000000;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 900;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container .fa-bars {
    color: #ddb938;
    font-size: 18px;
    cursor: pointer;
}

.brand-logo-img {
    padding-left: 10px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.header-actions {
    display: flex;
    gap: 5px;
    align-items: center;
}

.btn-login,
.btn-signup {
    background-color: #ddb938;
    background-image: linear-gradient(#ddb938, #825204);
    color: #fff !important;
    font-family: Roboto Condensed, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    padding: 5px 15px;
    border: 1px solid #825204;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-login {
    color: #000;
}

.btn-signup {
    color: #fff;
}

.btn-login:hover,
.btn-signup:hover {
    background-color: #c7a732;
}

/* Sub Navigation Bar */
.b2cmenu {
    background-color: #825204;
    height: 39px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: visible;
    white-space: nowrap;
    padding: 0 0px;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    position: sticky;
    top: 75px;
    z-index: 999;
}

.b2cmenu::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.b2cmenu ul {
    list-style: none;
    display: flex;
    gap: 0px;
    align-items: center;
    height: 100%;
}

.b2cmenu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.b2cmenu li a {
    color: #fff;
    font-family: Roboto Condensed, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 12px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.b2cmenu li.active a {
    background-color: #ddb938;
    color: #000;
}

.b2cmenu li a:hover {
    background-color: #ddb938;
    color: #000;
}

.tag-live {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .5);
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
    height: 12px;
    min-width: 33px;
    position: absolute;
    right: 3px;
    top: -6px;
    z-index: 999;
    pointer-events: none;
    background-color: #ffffff;
    /* border: 1px solid #fb3434; */
    overflow: hidden;
}

.tag-live-text {
    color: #fb3434;
    background-color: #ffffff;
    font-size: 7.5px;
    font-weight: bold;
    padding: 0 5px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: live-blink 2.0s infinite step-end;
}

@keyframes live-blink {

    0%,
    100% {
        color: #fb3434;
        background-color: #ffffff;
    }

    50% {
        color: #f6c5c5;
    }
}

.tag-live-num {
    color: #ffffff;
    background-color: #fb3434;
    font-size: 7.5px;
    font-weight: bold;
    padding: 0 3px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.aviator-plane {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 18px;
    width: auto;
    pointer-events: none;
}

.b2cmenu li a.ezugi-link {
    color: #e03a7a;
    animation: ezugi-rainbow 1s infinite linear;
}

.b2cmenu li a.ezugi-link:hover {
    color: #000 !important;
    animation: none !important;
}

@keyframes ezugi-rainbow {

    0%,
    100% {
        color: #ff0000;
        /* Red */
    }

    25% {
        color: #28a745;
        /* Green */
    }

    50% {
        color: #007bff;
        /* Blue */
    }

    75% {
        color: #9b5de5;
        /* Purple */
    }
}

/* Hero Carousel Slider */
.hero-slider {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.slider-dots span {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots span.active {
    background-color: #fff;
}

/* Promos and Grid Layout */
.promos-container {
    width: 100%;
    padding: 8px 10px;
    margin: 0 auto;
}

/* Triple Promos */
.triple-promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.triple-promos img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* Double Promos */
.double-promos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 8px;
}

.double-promos img {
    width: 100%;
    display: block;
}

/* News Marquee bar */
.marquee-static {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    margin: 10px 0;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
    color: #333;
}

.marquee-static i {
    color: #888;
    cursor: pointer;
}

/* Top Games Section */
.top-games-title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin: 15px 0 8px;
    padding-left: 2px;
}

.top-games-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.top-games-slider-wrapper {
    display: flex;
    gap: 6px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.top-game-slide {
    flex: 0 0 calc((100% - 48px) / 9);
    width: calc((100% - 48px) / 9);
}

.top-game-slide img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    border: 1px solid #dcdcdc;
}

/* Section Header Bar */
.section-header {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #825204;
    padding: 3px 6px;
    text-transform: uppercase;
    border-radius: 0px 0px 0 0;
    margin-top: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Odds Table Grid */
.odds-table {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    margin-bottom: 7px;
    overflow: hidden;
}

.odds-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 2px 12px;
    font-size: 12px;
    justify-content: space-between;
}

.odds-row:last-child {
    border-bottom: none;
}

.odds-row.empty-row {
    color: #000000;
    padding: 12px;
    font-family: Roboto Condensed, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.match-info {
    flex: 1;
}

.match-date-time {
    font-family: Roboto Condensed, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.live-indicator {
    color: #28a745;
    font-weight: bold;
}

.odds-icons {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0 4px;
}

.odds-icons img {
    height: 15px;
    object-fit: contain;
}

.odds-cols {
    display: flex;
    gap: 4px;
}

/* Back/Lay Odds cells */
.odds-cell {
    width: 90px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.odds-cell.back {
    background-color: #72bbef;
    color: #000;
}

.odds-cell.lay {
    background-color: #f6b3c9;
    color: #000;
}

.odds-cell.empty {
    background-color: #72bbef;
    border: 1px solid #72bbef;
    cursor: default;
}

.odds-cell .odds-val {
    font-size: 12px;
    line-height: 1.1;
}

.odds-cell .odds-size {
    font-size: 9px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 1px;
}

.view-more-link {
    font-family: Roboto Condensed, sans-serif;
    display: block;
    text-align: right;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

/* Floating WhatsApp Button */
.whatsapp-floater-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-size: 13px;
}

.whatsapp-floater-btn img {
    width: 22px;
    height: 22px;
}

/* Sponsor logo bar in footer */
.footer-sponsor-bar {
    background-color: #000000;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-sponsor-bar img {
    height: 60px;
    object-fit: contain;
    max-width: 90px;
}

/* Footer main layout */
footer {
    background-color: #000000;
    color: #a1aed4;
    padding: 30px 15px 15px;
    font-size: 12px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 25px;
}

.footer-about img {
    height: 38px;
    margin-bottom: 15px;
    object-fit: contain;
    display: block;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.footer-column h4 {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: bold;
    text-transform: capitalize;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #ffb400;
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
    color: #777;
}

/* Custom Hero Slider and Accordion styling */
.hero-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: auto;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
}

.hero-slide picture {
    display: block;
    width: 100%;
    height: auto;
}

.accordion-mainbox {
    width: 100%;
    margin: 15px 0;
}

.accordion-innerbox {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-head {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    user-select: none;
}

.accordion-title {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.accordion-arrow {
    color: #888;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 15px;
    border-top: 1px solid #eee;
    display: none;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    background-color: #fafafa;
}

.accordion-innerbox.active .accordion-content {
    display: block;
}

.accordion-innerbox.active .accordion-arrow {
    transform: rotate(180deg);
}

/* Media Queries for Viewports */
@media (max-width: 991px) {
    .top-game-slide {
        flex: 0 0 calc((100% - 24px) / 5);
        width: calc((100% - 24px) / 5);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .header-top {
        display: none;
    }

    .triple-promos {
        grid-template-columns: 1fr;
    }

    .double-promos {
        grid-template-columns: 1fr;
    }

    .top-game-slide {
        flex: 0 0 calc((100% - 12px) / 3);
        width: calc((100% - 12px) / 3);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Bottom Navigation Bar */
.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background-color: #0d0e12;
    border-top: 1px solid #282a36;
    z-index: 999;
    display: none;
}

@media (max-width: 767px) {
    .footer-menu {
        display: block;
    }

    body {
        padding-bottom: 52px;
    }
}

.footer-menu .wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.footer-menu .button-f {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a1aed4;
    font-size: 10px;
    text-decoration: none;
    cursor: pointer;
    width: 25%;
    height: 100%;
}

.footer-menu .button-f .icon img {
    height: 20px;
    margin-bottom: 2px;
    object-fit: contain;
}

.footer-menu .button-f.active {
    color: #ddb938;
}

/* Sign Up Popup Modal Styles */
.signup-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.signup-popup-content {
    background: #ffffff;
    border: 5px solid #825204;
    border-radius: 15px;
    width: 30%;
    max-width: 520px;
    position: relative;
    padding: 10px 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    max-height: 90vh;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Hide scrollbar for popup card on Chrome/Safari/Webkit */
.signup-popup-content::-webkit-scrollbar {
    width: 5px;
}

.signup-popup-content::-webkit-scrollbar-track {
    background: transparent;
}

.signup-popup-content::-webkit-scrollbar-thumb {
    background: #ddb938;
    border-radius: 4px;
}

.signup-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s ease;
}

.signup-popup-close:hover {
    color: #ff0000;
}

.signup-popup-header {
    text-align: center;
    margin-bottom: 10px;
}

.signup-popup-subtitle {
    font-size: 14px;
    color: #000;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-family: Roboto Condensed, sans-serif;
}

.signup-popup-title {
    font-size: 24px;
    color: #000;
    margin-top: 1px;
    font-family: Roboto Condensed, sans-serif;
    text-align: center;
}

/* WhatsApp Button styling */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 265px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(90deg, #ff4e3e 0%, #e91e63 100%);
}

.whatsapp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.wa-icon-circle {
    width: 32px;
    height: 32px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.whatsapp-btn-text {
    color: #ffffff;
    font-family: Roboto Condensed, sans-serif;
    font-size: 19px;
    font-weight: bold;
    letter-spacing: 0.5px;
    animation: whatsapp-text-blink 1.2s infinite ease-in-out;
}

@keyframes whatsapp-text-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* Separator */
.signup-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.signup-divider::before,
.signup-divider::after {
    content: '';
    flex: 1;
    height: 1.5px;
}

.signup-divider::before {
    background: linear-gradient(to right, transparent, #000000);
}

.signup-divider::after {
    background: linear-gradient(to right, #000000, transparent);
}

.signup-divider span {
    padding: 0 15px;
    font-family: Roboto Condensed, sans-serif;
    letter-spacing: 0.5px;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.signup-form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.signup-form-group label {
    font-size: 14px;
    color: #000000;
    font-family: Roboto Condensed, sans-serif;
}

.signup-form-group label .required {
    color: #ff0000;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    height: 35px;
    border: 1.5px solid #3f4045;
    font-family: Roboto Condensed, sans-serif;
    border-radius: 10px;
    padding: 0 4px !important;
    font-size: 13px;
    outline: none;
    background: #ffffff;
    color: #000000;
    transition: border-color 0.2s ease;
}

.form-input::placeholder {
    color: #9c9c9c;
}

.form-input:focus {
    border-color: #825204;
}

/* Password eye icons */
.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper .form-input {
    padding-right: 40px;
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b5998;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s ease;
}

.password-toggle-icon:hover {
    color: #000000;
}

/* Mobile Input Wrapper styles (Black background card style) */
.mobile-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: #000000;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 14px;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    background-color: #ddb938;
    height: 100%;
    padding: 0 8px;
    margin-left: -10px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.flag-icon {
    width: 20px;
    height: 13px;
    object-fit: cover;
    border-radius: 1px;
}

.country-arrow {
    color: #000000;
    font-size: 8px;
    margin-left: 2px;
}

.country-code {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    margin-left: 8px;
    margin-right: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.mobile-input-field {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    padding-right: 75px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.get-code-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 26px;
    padding: 0 12px;
    border-radius: 4px;
    border: none;
    background-color: #ffffff;
    color: #000000;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    font-family: Roboto Condensed, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.get-code-btn:hover {
    background-color: #f0f0f0;
}

/* Disclaimer text */
.signup-disclaimer {
    font-size: 11px;
    color: #000;
    text-align: left;
    line-height: 1.4;
    margin-bottom: .25rem !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.signup-disclaimer u {
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

/* Submit Register Button */
.register-submit-btn {
    display: block;
    width: 95%;
    height: 40px;
    border: 1px solid #825204;
    border-radius: 6px;
    color: #000000;
    font-family: Roboto Condensed, sans-serif;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-transform: capitalize;
    background: linear-gradient(to bottom, #ddb938, #825204);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    margin: 5px auto 0;
}

.register-submit-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.register-submit-btn:active {
    transform: scale(0.99);
}

/* Signup Alert Banner */
.signup-alert-banner {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: bold;
    text-align: center;
    font-family: Roboto Condensed, sans-serif;
    display: none; /* controlled by JS */
}

.signup-alert-banner.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.signup-alert-banner.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 576px) {
    .signup-popup-content {
        padding: 20px 16px 15px;
        border-width: 4px;
        border-radius: 16px;
    }

    .signup-popup-title {
        font-size: 20px;
    }

    .whatsapp-btn-text {
        font-size: 16px;
    }
}