body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow: hidden;
}

/* ===== Base Layout ===== */
#auth-main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(120deg, #e3f2fd 0%, #f8f9fa 100%);
    overflow: hidden;
}

/* Split Layout */
#home-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ===== LEFT SIDE ===== */
#home-container-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    border-right: 1px solid #eee;
    box-shadow: inset -2px 0 6px rgba(0, 0, 0, 0.05);
    width: 100%;
}

#home-container-left h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

#home-container-left h2 span {
    color: #007bff;
}

#home-container-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
    width: 50%;
}

/* ===== RIGHT SIDE ===== */
#home-container-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== AUTH FORM ===== */
#signup-form{
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 2.8rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.4s ease-out;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 1.2rem;
}
/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
    #home-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
    }

    #home-container-left {
        background: transparent;
        align-items: center;
        text-align: center;
        border-right: none;
        box-shadow: none;
        padding: 0 0 2rem 0;
    }

    #home-container-left h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        margin: auto;
    }

    #home-container-left p {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto;
    }

    #home-container-right {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        padding: 1rem;
    }

    #signup-form{
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
        animation: popIn 0.3s ease-out;
        max-width: 360px;
        width: 100%;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    @keyframes popIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }
} 

@media (max-width: 500px) {
    #signup-form{
        padding: 1.5rem 1rem;
    }
}