* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Wix Madefor Text', sans-serif;
    background: linear-gradient(135deg, #e8754f 0%, #a04830 100%);
    background-size: cover, cover;
    background-position: center, center;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

html {
    overflow: hidden;
}

.account-pages {
    width: 100%;
    display: block;
    transform: translateY(30px);
}

.auth-card {
    position: relative;
    border: 0;
    box-shadow: none;
}

.auth-card::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    background: #ffffff;
    opacity: 0.25;
    height: 20px;
    width: 80%;
    margin: 0 auto;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    z-index: -1;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    background: #ffffff;
    opacity: 0.6;
    height: 20px;
    width: 90%;
    margin: 0 auto;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    z-index: -1;
}

.auth-page-sidebar {
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 0.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.auth-page-sidebar img {
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.landing-content {
    padding: 2.5rem;
    text-align: center;
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #313b5e;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: #c1593f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
}

.logo-section {
    text-align: center;
    padding: 2rem 0;
}

.logo-section img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991px) {
    .auth-page-sidebar {
        display: flex !important;
        min-height: 200px;
        padding: 0.5rem;
    }

    .landing-content {
        min-height: 300px;
        padding: 1.5rem;
    }

    .auth-page-sidebar img {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .account-pages {
        transform: translateY(10px);
    }

    .coming-soon-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .feature-badge {
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .auth-page-sidebar img {
        width: 220px;
        height: 220px;
    }

    .auth-page-sidebar {
        min-height: 150px;
    }

    .landing-content {
        min-height: 250px;
        padding: 1rem;
    }

    .logo-section {
        padding: 1rem 0;
    }

    .logo-section img {
        max-width: 180px;
    }
}

