.auth-main {
    display: flex;
    height: 100vh;
    width: 100%;
}

.auth-nav {
    background: transparent !important;
}

.auth-image {
    flex: 1.2;
    position: relative;
    background-size: cover;
    background-position: center;
    display: none;
}

@media (min-width: 900px) {
    .auth-image {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5rem;
    }
}

.auth-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(5,5,5,1) 100%);
}

.auth-quote {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.auth-quote h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -1px;
    font-style: italic;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    padding: 2rem;
    position: relative;
    padding-top: 6rem;
}

.auth-box {
    width: 100%;
    max-width: 450px;
}

.auth-section {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.auth-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.auth-section p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 1.2rem;
    background-color: #111;
    border: 1px solid #333;
    color: var(--text-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.input-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.w-100 {
    width: 100%;
    margin-top: 1rem;
}

.auth-switch {
    margin-top: 2rem !important;
    text-align: center;
    font-size: 1rem;
    color: #aaa;
}

.text-link {
    background: none;
    border: none;
    color: var(--accent-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: none;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s;
}

.text-link:hover {
    text-decoration-color: var(--accent-color);
}
