/* landing_page.css updated version */
:root {
    --brp-black: #333132;
    --brp-white: #FFFFFF;
    --brp-yellow: #F0B42B;
    --brp-light: #f8f9fa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--brp-black);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-header {
    padding: 1.5rem;
    background: var(--brp-black);
    display: flex;
    align-items: center;
}
.title{
    margin-left: 15px;
    color: #F0B42B;
}
.logo {
    height: 50px;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    margin: auto;
    max-width: 1200px;
    width: 100%;
}

.auth-option {
    background: var(--brp-black);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.brp-employee {
    border-color: var(--brp-yellow);
}
.non-employee {
    border-color: var(--brp-yellow)
}

.option-content {
    text-align: center;
    color: var(--brp-white);
}

.option-title {
    font-size: 2.2rem;
    color: var(--brp-yellow);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.option-divider {
    width: 60px;
    height: 2px;
    background: var(--brp-yellow);
    margin: 1.5rem auto;
}

.option-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.option-button {
    display: inline-block;
    background: var(--brp-yellow);
    color: var(--brp-black);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
}

.option-button:hover {
    background: #ffc845;
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .auth-option {
        padding: 2rem;
    }
    
    .option-title {
        font-size: 1.8rem;
    }
    
    .option-text {
        font-size: 1rem;
    }
    
    .logo {
        height: 40px;
    }
}