/* Restaurant Split-Screen Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --rest-primary: #D35400;
    --rest-dark: #2c3e50;
    --rest-light: #fdfbf7;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: var(--rest-dark);
}

.auth-page-wrapper {
    height: 100vh;
    overflow: hidden;
}

.row-full-height {
    height: 100vh;
}

/* Left Side - Image */
/* Left Side - Image */
.login-hero-section {
    /* Fallback gradient if image fails */
    background: linear-gradient(135deg, var(--rest-primary) 0%, #a04000 100%);
    /* Optional: Keep image if it works */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/about.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
    padding: 3rem;
    color: white;
    text-align: center;
}

.hero-logo {
    max-width: 150px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 50%;
}

.login-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Right Side - Form */
.login-form-section {
    background-color: var(--rest-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-container {
    width: 100%;
    max-width: 480px;
    padding: 3rem;
}

.brand-logo {
    display: block;
    margin-bottom: 2rem;
    max-height: 80px;
    /* Adjust based on logo needs */
    width: auto;
}

.login-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--rest-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #7f8c8d;
}

.form-control {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--rest-primary);
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.btn-primary-rest {
    background-color: var(--rest-primary);
    border: none;
    color: white;
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-primary-rest:hover {
    background-color: #ba4a00;
}

.auth-links {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--rest-primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .login-hero-section {
        display: none;
        /* Combine or hide on mobile if desired, or stack */
    }
}