/* Auth Page Styles */
.auth-container {
    min-height: 100vh;
    max-height: none;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    max-width: 1040px;
    margin: 0 auto;
    overflow: visible;
}
@media screen and (max-width: 1024px) {
    .auth-container { grid-template-columns: 1fr; justify-items: center; align-content: start; padding: 0.25rem 1.2rem 0.25rem 0.25rem; }
    .auth-artwork { display: none; }
    .auth-box { max-width: 310px; margin-top: 0; }
    .auth-form { max-width: 310px; margin: 0 auto; }
    .back-link { white-space: nowrap; width: max-content; font-size: 0.62rem; margin-left: 0.25rem; }
}
@media screen and (max-width: 480px) {
    .auth-container { grid-template-columns: 1fr; justify-items: center; align-content: start; padding: 0.25rem 1.2rem 0.25rem 0.25rem; }
    .auth-artwork { display: none; }
    .auth-box { max-width: 310px; margin-top: 0; }
    .auth-form { max-width: 310px; margin: 0 auto; }
    .back-link { white-space: nowrap; width: max-content; font-size: 0.62rem; }
}



.auth-box {
    max-width: 360px;
    width: 50%;
    margin: 0 auto;
    max-height: none;
    overflow: visible;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.62rem;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: max-content;
}

.back-link:hover {
    color: var(--accent-primary);
    transform: translateX(-5px);
}

.back-link span {
    font-size: 0.75rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 0.45rem;
}

.auth-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin: 0 auto 0.25rem;
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

.auth-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.12rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.65rem;
}

.auth-form {
    background: var(--bg-card);
    padding: 0.7rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    display: none;
}

.label-icon {
    display: none;
}

.form-group input {
    width: 100%;
    padding: 0.5rem 0.7rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.72rem;
    transition: all 0.3s ease;
}

.form-group select {
    width: 100%;
    padding: 0.5rem 0.7rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.72rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 2.3rem;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\25BC';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.18rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 9px;
    height: 9px;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

.checkbox-label a {
    color: var(--accent-primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 0.48rem 0.85rem;
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
    text-align: center;
    justify-content: center;
}

.divider {
    display: block;
    position: relative;
    text-align: center;
    margin: 0.55rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    position: relative;
    background: var(--bg-card);
    padding: 0 0.5rem;
    color: var(--text-muted);
    font-size: 0.6rem;
}

.social-auth {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    justify-content: center;
    justify-items: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.social-btn {
    padding: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn span {
    display: none;
}

.social-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.auth-switch {
    display: block;
    text-align: center;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.auth-switch a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}
.auth-switch a:hover {
    text-decoration: underline;
}

/* Auth Artwork Section */
.auth-artwork {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
@media screen and

c:\xampp\htdocs\NF\app\assets\css\auth.css
.artwork-content {
    text-align: center;
    max-width: 450px;
}

.artwork-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.875rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.8s ease-out;
}

.artwork-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.6;
    animation: slideInRight 1s ease-out;
}

.artwork-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    animation: slideInRight 1.2s ease-out;
}

.artwork-stat {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.artwork-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
}

.artwork-stat h3 {
    font-size: 1.35rem;
    color: var(--accent-primary);
    margin-bottom: 0.35rem;
}

.artwork-stat p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: slideInLeft 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.5rem;
        max-height: none;
    }

    .auth-box {
        max-width: 100%;
        width: 100%;
    }

    .auth-artwork {
        display: none;
    }

    .social-auth {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        justify-content: center;
        justify-items: center;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-btn {
        padding: 0.4rem 0.3rem;
        font-size: 0.7rem;
        min-height: 55px;
        border-radius: 10px;
        width: 100%;
        margin: 0;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    .social-btn span {
        font-size: 0.65rem;
    }

    .social-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0.5rem;
        max-height: none;
    }

    .auth-box {
        max-width: 100%;
        width: 100%;
        max-height: none;
    }

    .auth-artwork {
        display: none;
    }

    .back-link {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .auth-header {
        margin-bottom: 0.6rem;
    }

    .auth-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        margin: 0 auto 0.3rem;
    }

    .auth-header h1 {
        font-size: 1.1rem;
    }

    .auth-header p {
        font-size: 0.7rem;
    }

    .auth-form {
        padding: 0.8rem;
    }

    .form-group {
        margin-bottom: 0.55rem;
    }

    .form-group input {
        padding: 0.55rem 0.75rem;
        font-size: 0.8rem;
    }

    .form-options {
        font-size: 0.68rem;
        margin-bottom: 0.55rem;
    }

    .btn-full {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
        margin-bottom: 0.6rem;
    }

    .divider {
        margin: 0.65rem 0;
    }

    .divider span {
        font-size: 0.68rem;
    }

    .social-auth {
        gap: 0.4rem;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        justify-items: center;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-btn {
        padding: 0.4rem 0.3rem;
        font-size: 0.7rem;
        min-height: 55px;
        width: 100%;
        margin: 0;
        border-radius: 10px;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    .social-btn span {
        font-size: 0.65rem;
    }

    .social-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 0.4rem;
    }

    .auth-box {
        width: 100%;
        padding: 0;
    }

    .back-link {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
    }

    .auth-header {
        margin-bottom: 0.5rem;
    }

    .auth-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        margin: 0 auto 0.25rem;
    }

    .auth-header h1 {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }

    .auth-header p {
        font-size: 0.65rem;
    }

    .auth-form {
        padding: 0.7rem;
        border-radius: 10px;
    }

    .form-group {
        margin-bottom: 0.5rem;
    }

    .form-group input {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
    }

    .form-options {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .checkbox-label input[type="checkbox"] {
        width: 10px;
        height: 10px;
    }

    .btn-full {
        padding: 0.55rem 0.95rem;
        font-size: 0.78rem;
        margin-bottom: 0.55rem;
    }

    .divider {
        margin: 0.6rem 0;
    }

    .divider span {
        font-size: 0.65rem;
        padding: 0 0.5rem;
    }

    .social-auth {
        gap: 0.3rem;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        justify-items: center;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-btn {
        padding: 0.35rem 0.25rem;
        font-size: 0.65rem;
        min-height: 50px;
        width: 100%;
        margin: 0;
        border-radius: 8px;
    }

    .social-btn svg {
        width: 16px;
        height: 16px;
    }

    .social-btn span {
        font-size: 0.6rem;
    }

    .social-icon {
        width: 13px;
        height: 13px;
    }
}