.login-img {
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap-login100 {
    padding: 50px;
}


.gestiuni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gestiune-box {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.gestiune-box:hover {
    background: #e9f5ff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.box-content h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.box-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}
