/* Login Container */
.lb-login-container {
    display: flex;
    min-height: 70vh;
    position: relative;
    margin-top: -20px;
}

.lb-login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #191970 0%, #4B0082 100%);
    opacity: 0.05;
    z-index: -1;
}

/* Left Side - Login Form */
.lb-login-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: var(--e-global-color-adae272);
    position: relative;
}

.lb-login-content {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header */
.lb-login-header {
    text-align: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}


.lb-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.lb-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #191970;
    margin: 0 0 20px 0;
}

.lb-login-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #191970;
    margin: 0 0 10px 0;
}

.lb-login-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.lb-brand-logo {
    height: 100px;
    width: auto;
}

.lb-login-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Form */
.lb-login-form {
    margin-bottom: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lb-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.lb-form-group {
    margin-bottom: 20px;
}

.lb-form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.lb-form-input:focus {
    outline: none;
    border-color: #191970;
}

.lb-login-button {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #191970 0%, #4B0082 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lb-login-button:hover {
    transform: translateY(-2px);
}

/* Form Links */
.lb-form-links {
    text-align: center;
    margin-top: 20px;
}

.lb-forgot-password {
    display: block;
    color: #191970;
    text-decoration: underline;
    margin-bottom: 15px;
    font-size: 14px;
}

.lb-register-link {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.lb-register-link a {
    color: #191970;
    text-decoration: underline;
    font-weight: 500;
}

/* Social Login */
.lb-social-login {
    margin-top: 30px;
    display: none; /* vorerst ausblenden */
}

.lb-social-divider {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin: 20px 0;
    position: relative;
}

.lb-social-divider::before,
.lb-social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e0e0e0;
}

.lb-social-divider::before {
    left: 0;
}

.lb-social-divider::after {
    right: 0;
}

.lb-google-login,
.lb-facebook-login {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.lb-google-login:hover,
.lb-facebook-login:hover {
    background: #f8f9fa;
    border-color: #191970;
}

/* Footer */
.lb-login-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.lb-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.lb-footer-links {
    display: flex;
    gap: 20px;
}

.lb-footer-links a {
    color: #999;
    text-decoration: none;
}

.lb-footer-links a:hover {
    color: #191970;
}

/* Right Side - Background Image */
.lb-login-image-section {
    flex: 1;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 25, 112, 0.3);
}

.lb-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.lb-image-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.lb-image-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .lb-login-container {
        flex-direction: column;
    }
    
    .lb-login-image-section {
        display: none;
    }
    
    .lb-login-form-section {
        padding: 20px;
    }
    
    .lb-footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Error/Success Messages */
.lb-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.lb-message.lb-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.lb-message.lb-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

