/* Login Page Styles */
body.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.login-container {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.login-image-col {
    padding: 0;
}

.login-image {
    background-image: url("../images/leesnoodle-logo.464ef22869fd.jpg");
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.brand-text {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
}

.brand-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-form-col {
    padding: 0;
}

.login-form {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-primary {
    background-color: #343a40;
    border-color: #343a40;
}

.btn-primary:hover {
    background-color: #23272b;
    border-color: #1d2124;
}

@media (max-width: 768px) {
    .login-image {
        min-height: 200px;
    }
    
    .login-form {
        padding: 20px;
    }
}