/* Login Page Specific Styles */
.auth-main {
    display: flex;
    min-height: calc(100vh - 80px);
}

.auth-container {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.auth-header h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray);
}

.auth-header a {
    color: var(--primary);
    font-weight: 600;
}

.auth-form {
    margin-bottom: 2rem;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.forgot-password {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.checkbox-group input {
    margin-right: 0.75rem;
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.auth-footer {
    text-align: center;
}

.auth-footer p {
    position: relative;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.auth-footer p::before,
.auth-footer p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: var(--light-gray);
}

.auth-footer p::before {
    left: 0;
}

.auth-footer p::after {
    right: 0;
}

.social-auth {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--light);
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.auth-image {
    display: none;
    flex: 1;
    background-color: var(--light);
    position: relative;
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .auth-container {
        padding: 4rem;
    }
}

@media (min-width: 992px) {
    .auth-image {
        display: block;
    }
    
    .auth-container {
        padding: 4rem 6rem;
    }
}