/* Auth Pages Styles (Login/Register) */

/* Variables - Auth Specific */
:root {
    --auth-accent-yellow: #fcd34d;
    --auth-btn-yellow: #fbbf24;
    --auth-btn-hover: #f59e0b;
    --auth-bg: #fff;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--auth-bg);
}

/* Header */
.auth-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-logo:hover {
    color: #111827;
}

.auth-logo i {
    color: var(--auth-btn-yellow);
}

/* Split Layout */
.auth-split-wrapper {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.auth-left {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    height: 100%;
}

.auth-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.text-highlight {
    position: relative;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(252, 211, 77, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fffbeb;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-text h6 {
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #1f2937;
}

.feature-text p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 6rem;
    background-color: #fff;
    height: 100%;
    width: 100%;
}

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

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

.form-control:focus {
    border-color: var(--auth-btn-yellow);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.input-group-text {
    background-color: #fff;
    border: 1px solid #d1d5db;
}

.btn-auth-yellow {
    background-color: var(--auth-btn-yellow);
    color: #1f2937;
    font-weight: 600;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.btn-auth-yellow:hover {
    background-color: var(--auth-btn-hover);
    color: #111827;
}

.social-btn {
    border: 1px solid #e5e7eb;
    background-color: white;
    color: #374151;
    font-weight: 500;
    padding: 0.7rem;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.social-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .auth-header {
        padding: 1rem 1.5rem;
        position: relative;
    }

    .auth-left {
        padding: 2rem 2rem 0 2rem;
        text-align: center;
        height: auto;
    }
    
    .auth-right {
        padding-top: 2rem;
        height: auto;
    }
    
    .auth-left h1 {
        font-size: 2.5rem;
    }
    
    .feature-item {
        justify-content: center;
        text-align: left;
    }
}
