/* CookingStar - Authentication Pages */

/* Homepage Design */
.homepage-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.homepage-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.homepage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    z-index: 1;
}

.homepage-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.brand-section {
    text-align: left;
}

.homepage-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.homepage-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.4;
}

.homepage-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: #ffffff;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
    line-height: 1;
    position: relative;
}

.feature-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(231, 76, 60, 0.3);
}

.homepage-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login Seite */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.login-form {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.login-form h1 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.login-title {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.login-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}

.login-form p {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.register-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.register-info p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.register-info a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
}

.register-info a:hover {
    text-decoration: underline;
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .homepage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .homepage-left {
        padding: 1rem;
        text-align: center;
    }
    
    .brand-section {
        text-align: center;
    }
    
    .homepage-title {
        font-size: 2.5rem;
    }
    
    .homepage-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .homepage-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .login-form {
        margin: 1rem;
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .homepage-container {
        padding: 1rem;
    }
    
    .homepage-title {
        font-size: 2rem;
    }
    
    .homepage-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .login-form {
        padding: 1.5rem 1rem;
    }
}