/* Custom Auth Page Styles */
:root {
    --primary-color: #ff8a00;
    --primary-hover: #e67e00;
    --secondary-color: #001935;
    --text-color: #001935;
    --text-muted: #6c757d;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
}

body {
    overflow-x: hidden;
}

/* Split Screen Layout */
.split-screen-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    margin-bottom: 40px;
}

.auth-image-side {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    color: white;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 25, 53, 0.4), rgba(0, 25, 53, 0.9));
    z-index: 1;
}

.auth-image-content {
    position: relative;
    z-index: 2;
}

.auth-image-content h2 {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.auth-form-side {
    flex: 0 0 55%;
    max-width: 55%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    overflow-y: auto;
}

/* Modern Tabs */
.auth-tabs-container {
    margin-bottom: 2rem;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
}

.auth-tab-item {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
}

.auth-tab-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.auth-tab-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(255, 138, 0, 0.2);
}

/* Form Styles */
.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-control.modern-input {
    height: 52px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding-left: 1.25rem;
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-control.modern-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1);
}

.btn-auth-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    height: 52px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-auth-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.25);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .split-screen-container {
        flex-direction: column;
    }

    .auth-image-side {
        flex: 0 0 250px;
        max-width: 100%;
        padding: 2rem;
    }

    .auth-form-side {
        flex: 1;
        max-width: 100%;
        padding: 2rem;
    }

    .auth-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
}